Ubuntu linux 配置NAT 使 ip固定

1. 添加两个网卡, 一个 eth0 桥接, dhcp 模式; 一个eth1 Nat模式, static静态模式;

 

 

2. 配置虚拟网络编辑器 vmnet8 的ip

 

 

 

 

3. 配置虚拟机 /etc/network/interfaces, 以网段192.168.1.141为例

# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

#the primary network interface
allow-hotplug eth0
auto eth0
iface eth0 inet dhcp

#Host-only mode
auto eth1
iface eth1 inet static
address 192.168.1.141
netmask 255.255.255.0
gateway 192.168.1.2
dns-nameservers 8.8.8.8

 

4. 配置电脑段 转发中心的ip

 

 

5. reboot 重启虚拟机,测试ip

 

posted on 2021-12-22 10:41  Meer6767  阅读(78)  评论(0编辑  收藏  举报