O arquivo "hosts" no Ubuntu e em outros sistemas operacionais é usado para associar nomes de host a endereços IP.
# /etc/hosts (for master AND slave)
192.168.0.1 master
192.168.0.2 slave
o que significa se você estiver no servidor mestre vc pode ping slave
, vc não precisa colocar 192.168.0.2
como funciona
por ping escravo do mestre u não tem que lembrar o endereço IP do escravo apenas ping escravo & amp; O arquivo / etc / hosts resolverá o com o ip automaticamente
% bl0ck_qu0te%(mestre)
auto eth0
iface eth0 inet static
address 192.168.0.1 (or any ip u want )
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1 ( Your gateway , Your router ip )
(escravo)
auto eth0
iface eth0 inet static
address 192.168.0.2 ( or any ip u want )
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1 ( Your gateway , Your router ip )
Agora, em ambos os arquivos edit / etc / hosts, adicione entradas master slave
Agora, como encontrar o GATEWAY
antes de fazer qualquer tipo # route
route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default **192.168.0.1** 0.0.0.0 UG 0 0 0 eth0
OR
route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 **192.168.0.1** 0.0.0.0 UG 0 0 0 eth0
Espero que isso ajude você