一.添加永久ip 编辑/etc/sysconfig/network-scripts/ifcfg-eth0文件: 网络接口配置文件 [root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 # Intel Corporation 82545EM Gigabit Ethernet Controller (Copper) TYPE=Ethernet #网卡类型 DEVICE=eth0 #网卡接口名称 ONBOOT=yes #系统…
linux下ip地址除了primary外,还有两种:1. ip alias(子接口)2. secondary ip(辅助ip) 都可在一块物理网卡上添加,alias由ifconfig添加,ifconfig查看时以子接口如eth0:1的形式显示;secondary ip由ip命令所支持. 1. ip alias(子接口)# ifconfig eth0:1 10.10.56.33/24 up #添加到内存中并立即生效,ifconfig和ip addr sh可查看.也可到/etc/sysconfig/…
通常我们使用route add -net添加临时路由.当系统重启,临时路由将丢失,重新配置路由带来了不必要的麻烦.可通过固化临时路由为永久路由的方法解决该问题. static-routes文件为路由固化文件. 1./etc/sysconfig目录下,系统一般不会自动生成static-routes文件,需要手工创建. 2.static-routes文件中路由固化的格式① 添加默认路由any net 0.0.0.0 netmask 0.0.0.0 gw 10.92.2.1或者any net 0.0.…
1.首先查看一下本机的路由 route -n 2.比如我们添加两条静态路由,访问192.168.142.100时通过192.168.142.10:访问192.168.142.200时通过192.168.142.20 vim /etc/sysconfig/network-scripts/-route-eth0 添加如下信息: 192.168.142.100/32 via 192.168.142.10 192.168.142.200/32 via 192.168.142.20 保存并退出.…
本文最后修改时间:20180313 一.快速修改,重启后设置就没了 ifconfig eth0 192.168.1.22 netmask 255.255.255.0 up route add default gw 192.168.1.2 二.修改配置文件,重启设置还在 (一)ubuntu 版本命令行设置静态IP 修改 /etc/network/interfaces # This filedescribes the networ k interfaces available onyour syst…
本文原文来自 http://blog.csdn.net/zymx14/article/details/51472239 linux下使用ifconfig eth0 ip地址可以设置ip地址 ,命令为:ifconfig eth0 192.168.*.*  但并不能永久生效 如果想要永久生效,输入命令setup打开图形界面,设置相应ip和DNS后保存即可 但是可能你会发现即使service network start 即重启网络后可能输入ifconfig也看不到eth0网卡的信息,说明并没有生效,这…
/etc/network 下:interfaces auto loiface lo inet loopbackauto eth0iface eth0 inet staticaddress 192.168.1.111netmask 255.255.255.0gateway 192.168.1.1 /etc/ 下:resolv.conf nameserver 8.8.8.8 配置好后,/etc/init.d/networking restart 网卡重启即可!…
https://blog.csdn.net/dear_snowing/article/details/68066544 https://www.cnblogs.com/liuyisai/p/5990645.html https://blog.csdn.net/guoxiaojie_415/article/details/38640525 https://blog.csdn.net/huoyuanshen/article/details/68483188 https://blog.csdn.net…
linux route命令的使用详解 添加永久静态路由  tracert  traceroute route -n    Linuxroute  print  Windows traceroute  -n Linuxtracert  -d  Windows --http://www.cnblogs.com/snake-hand/p/3143041.html 每天一个linux命令(53):route命令 --http://www.cnblogs.com/peida/archive/2013/03…
一:使用 route 命令添加 使用route 命令添加的路由,机器重启或者网卡重启后路由就失效了,方法: //添加到主机的路由 # route add –host 192.168.1.11 dev eth0 # route add –host 192.168.1.12 gw 192.168.1.1 //添加到网络的路由 # route add –net 192.168.1.11  netmask 255.255.255.0 eth0 # route add –net 192.168.1.11 …