Already it would be good to set the local ip of this machine.
Works on the local machine and edit / etc / networking / interfaces to pass the ip sets.
Code:
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.20
netmask 255.255.255.0
gateway 192.168.1.1
It tells the interface to take a fixed ip then configured address, ss asque of network and gateway.
Then there is a
Code:
sudo / etc / init.d / networking restart
and tents after you log in using ssh the ip you assigned to your machine.
Bookmarks