i configured master and slave setup. but some times after restart the machines wired ip address changes. how to set a static ip step by step. please help me thank you.
Asked
Active
Viewed 1,443 times
1
-
3This question might have better answers: http://askubuntu.com/questions/338442/how-to-set-static-ip-address-in-guest-ubuntu-running-in-virtual-box?rq=1 – Dan Aug 20 '14 at 13:34
1 Answers
0
- sudo -s
- ip link show
- chose your network interface
- nano /etc/network/interfaces
allow-hotplug nameOfYourNetworkInterface iface nameOfYourNetworkInterface inet static address yourIPAddress netmask yourMask gateway yourGateway dns-nameservers IPAddressOfYourDNSServer IPAddressOfYourSecondDNSServer

d.b
- 1