我正在尝试找到一个选项,为ubuntu服务器添加/分配多个IP地址和网关.背后的原因是,我想从两个不同的网络访问设备.
例如,我可能想要访问192.168.2.45以及192.168.10.45的设备.如果我将网络接口配置为静态IP 192.168.2.68,我只能访问192.168.2.xxx的设备,如果我将IP更改为192.168.10.158,我只能访问192.168的设备. 10.xxx.
我可以使用网络管理器在Ubuntu Desktop中执行此操作,因为此屏幕截图显示:
通过上述配置,我可以访问网络192.168.10.xxx和192.168.2.xxx中的设备.我需要帮助将相同的配置应用到我的ubuntu服务器.
对
原文链接:https://www.f2er.com/ubuntu/347886.html/etc/network/interfaces
使用以下配置:
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.10.158 netmask 255.255.255.0 network 192.168.10.0 broadcast 192.168.10.255 gateway 192.168.10.1 dns-nameservers 202.56.250.5 8.8.8.8 up /sbin/ifup eth0:1 down /sbin/ifdown eth0:1 iface eth0:1 inet static address 192.168.2.68 netmask 255.255.255.0 network 192.168.2.0 broadcast 192.168.2.255 gateway 192.168.2.1