自由學習的風

幽夢影 張潮 少年讀書,如隙中窺月;中年讀書,如庭中望月;老年讀書,如臺上玩月。皆以閱歷之淺深,為所得之淺深耳。

[Ubuntu] 單網卡多個IP

2018年1月17日 星期三

1. 臨時性
sudo ip address add <ip-address>/<netmask> dev <interface>
例:
sudo ip address add 10.231.141.231/24 dev eth0

2. 永久性 /etc/network/interfaces
iface eth0 dhcp
iface eth0 inet static
    address 10.231.141.231/24
iface eth0 inet static
    address 10.241.141.231/24

重新啟動
sudo ifdown eth0 && sudo ifup eth0

補充:The iproute2 suite:
The iproute2 suite is the communication suite for interprocess communication beween the kernel and the user space via the netlink protocol. It should replace the whole standard network tools. Here is what they replace:
  • ifconfig --> ip addr and ip link
  • route --> ip route
  • arp --> ip neigh
  • iptunnel --> ip tunnel
  • ipmaddr --> ip maddr
  • netstat --> ss

0 意見:

張貼留言