如何在我的 ubuntu(VPS)中配置静态 IP(内部或 LAN IP)

如何在我的 ubuntu(VPS)中配置静态 IP(内部或 LAN IP)

首先向大家问好,我在使用 ubuntu 时遇到了问题,我正在运行带有 GUI(GNOME)的 ubuntu server 12.04 LTS,嗯,它是一个 VPS

这是我的 eth0

eth0      Link encap:Ethernet  HWaddr 8e:a3:65:ba:83:bc
          inet addr:207.xxx.xxx.27  Bcast:207.xxx.xxx.31  Mask:255.255.255.248
          inet6 addr: fxxx::8cxx:6xxx:fxxx:83bc/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:269487 errors:0 dropped:68 overruns:0 frame:0
          TX packets:202111 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:39408403 (39.4 MB)  TX bytes:92849451 (92.8 MB)

我有 eth0 、 vboxnet0 和 virbr0 接口

现在的问题是,我的 eth0 配置了外部 ip 地址,我已经安装了 virtualbox,现在我无法通过桥接接口上网,NAT 没问题

但是当我在 NAT 主机系统(ubuntu)中配置 vbox 时,无法 ping 通 Vbox 内的操作系统

现在有没有办法给我的主机(ubuntu)提供一个静态 ip(LAN,如 192.168.1.1)并在 vbox 内以桥接模式配置它

请帮助我

答案1

我遇到了同样的问题,通过桥接适配器和以下配置解决了:

/etc/网络/接口

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
#auto eth0
#iface eth0 inet dhcp

auto eth0:1
iface eth0:1 inet static
address 192.168.0.250
netmask 255.255.255.0
gateway 192.168.0.1

记得启动网络重启命令:

sudo 服务网络重启

为了完整起见,请参阅以下我的ifconfig输出:

eth0      Link encap:Ethernet  HWaddr **:**:**:**:**:**
          inet addr:192.168.0.11  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: ****::***:****:****:****/** Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:4156 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2755 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:5214910 (5.2 MB)  TX bytes:288520 (288.5 KB)

eth0:1    Link encap:Ethernet  HWaddr **:**:**:**:**:**
          inet addr:192.168.0.250  Bcast:192.168.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:49 errors:0 dropped:0 overruns:0 frame:0
          TX packets:49 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:4694 (4.6 KB)  TX bytes:4694 (4.6 KB)

已使用 Ubuntu 服务器 13.10 x64(客户机)和 Windows 8.1(主机)进行测试

相关内容