1

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.

macavity
  • 191
  • 3
    This 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 Answers1

0
  1. sudo -s
  2. ip link show
  3. chose your network interface
  4. nano /etc/network/interfaces
  5. allow-hotplug nameOfYourNetworkInterface iface nameOfYourNetworkInterface inet static address yourIPAddress netmask yourMask gateway yourGateway dns-nameservers IPAddressOfYourDNSServer IPAddressOfYourSecondDNSServer
d.b
  • 1