linux___ip

 

一、 使用图形化的方法

1.system-config-network-gui

点击editor,输入ip之后保存退出

 

使用service network restart

2.system-config-network-tui

  选择你要修改的网卡

  输入你要改的ip地址

 

     保存退出

 同样要重启网络服务service network restart

二、  使用命令

 1使用命令改变ip临时有效立即生效

 2更改eth0的ip

vim  /etc/sysconfig/network-scripts/ifcfg-eth0

service network restart

 

三、 linux下同一块网卡配置多个ip地址的方法

1. 临时有效立即生效

使用命令ifconfig 

Ifconfig eth0:0 192.168.0.68/24

Ifconfig eth0:1 192.168.1.68/24

Ifconfig eth0:2 192.168.2.68/24

 

等等,最多一块网卡上配置255个别名,此种配置方法,只是临时有效,重启后失效。

2.    配置永久有效的多个别名
如,我有一块网卡,想配置多个别名

 cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0:0 
拷贝eth0网卡的信息

 vi /etc/sysconfig/network-scripts/ifcfg-eth0:0   编辑eth0:0

编辑前eth0的配置信息

编辑后eth0:0的信息

service network restart

你可能感兴趣的:(linux,IP,职场,休闲)