机房网段更改后,如何避免在机房逐台更改IP?

16 May 2009 / Edit / History
机房网段更改后,如何避免在机房逐台更改IP?



方法如下:


  1. 假定更改前网段为 10.0.1.*, 更改后为 10.0.2.*
  2. 先在机房内把 10.0.1.2 改为 10.0.2.2, 然后你就可以离开机房了
  3. 远程登录 10.0.2.2, 在 /etc/network/interfaces 上加入如下的一段
          iface eth0:0 inet static
                  address 10.0.1.2
                  netmask 255.255.255.0
          注意,不要加入 gateway
  4. 运行 sudo ifup eth0:0, 运行 netstat -rn 检验是否成功:
    $ netstat -rn
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
    10.0.1.0        0.0.0.0         255.255.255.0   U         0 0          0 eth0
    10.0.2.0        0.0.0.0         255.255.255.0   U         0 0          0 eth0
    0.0.0.0         10.0.2.1        0.0.0.0         UG        0 0          0 eth0
  5. 此时你已经可以登录 10.0.1.* 网段的机器
  6. 登录 10.0.1.3 更改IP, 重启
  7. 重复第6部,直到所有机器的IP更改完毕
  8. 在 10.0.2.2 上运行 sudo ifdown eth0:0, 从 /etc/network/interfaces 中清除添加的配置段

Tags: operation

Related Posts:

comments powered by Disqus
Copyright © 2017 LI Daobing, Powered by github:pages, Jekyll, bootstrap, Designed by quanquan
Fork me on GitHub