Difference between revisions of "EMail: Mempersiapkan Server eMail IPv6"

From OnnoWiki
Jump to navigation Jump to search
Line 60: Line 60:
  
  
 +
Sama yang perlu di instalasi
  
 +
sudo su
 +
apt -y install fetchmail alpine thunderbird
  
 +
Edit /etc/resolv.conf
 +
 +
vi /etc/resolv.conf
 +
 +
nameserver 2345::1
  
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 
* [[IPv6]]
 
* [[IPv6]]

Revision as of 21:02, 20 February 2019

Topology Jaringan

Client A --- Server A ------- Server B ---- Client B
2345::1000   2345::1          2345::2       2345::2000

Server A dan B

Server A

sudo su
ip addr add 2345::1/64 dev enp0s3
apt update
apt -y install postfix dovecot-core dovecot-imapd dovecot-pop3d

Pilih

  • Internet Site
  • Hostname - coba1.id


Edit

vi /etc/resolv.conf
nameserver 2345::1

DNS Server

apt -y install bind9 bind9utils bind9-doc

Server B

Pada dasarnya tidak berbeda jauh dengan Server A, kecuali tidak ada DNS Server.

sudo su
ip addr add 2345::2/64 dev enp0s3
apt update
apt -y install postfix dovecot-core dovecot-imapd dovecot-pop3d

Pilih

  • Internet Site
  • Hostname - coba1.id


Edit

vi /etc/resolv.conf
nameserver 2345::1

Client A dan B

Client A

ip addr add 2345::1000/64 dev enp0s3

Client B

ip addr add 2345::2000/64 dev enp0s3


Sama yang perlu di instalasi

sudo su
apt -y install fetchmail alpine thunderbird

Edit /etc/resolv.conf

vi /etc/resolv.conf
nameserver 2345::1

Pranala Menarik