Linux雙網口配置時重復配置DEFROUTE和GATEWAY


 

配置一台機器時,沿襲了原有網口配置,修改網口名,把em1全部修改改為eth0

 

mv ifcfg-em1 ifcfg-eth0

mv ifcfg-em2 ifcfg-eth1

 

改完以后,機器變得不穩定,經常卡住,啟動時報錯:

 

 

 解決這個問題的過程中遇到3個問題:

 

1、備份的網口配置文件沒有刪除

ifcfg-em1_bak ifcfg-em2_bak


ifcfg-em3   ifdown-bnep  ifdown-ppp     ifup-bnep     ifup-plusb   ifup-wireless
ifcfg-em4   ifdown-eth   ifdown-routes  ifup-eth      ifup-post    init.ipv6-global
ifcfg-eth0  ifdown-ippp  ifdown-sit     ifup-ippp     ifup-ppp     net.hotplug
ifcfg-eth1  ifdown-ipv6  ifdown-tunnel  ifup-ipv6     ifup-routes  network-functions
ifcfg-lo    ifdown-isdn  ifup           ifup-isdn     ifup-sit     network-functions-ipv6

 

2、兩個網口都配置了默認路由,導致第二個路由創建失敗。

解決辦法:刪除第二個網口的默認路由,在/etc/rc.local文件中加入一條永久路由:

[root@jiexi5 sysconfig]# cat /etc/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local
#route add default gw 10.204.250.1 dev eth0
route add -net 10.0.0.0/8 gw 10.204.250.1

https://www.cnblogs.com/ssgeek/p/9220690.html

3、eth1網口的名稱出錯

 

4、啟動后只能進圖形界面,想改成命令行界面

使用命令:  vi   /etc/inittab 
id:5:initdefault:   
中的5 改成3 即可: 
id:3:initdefault:  
然后wq保存,重啟OK。

https://www.cnblogs.com/wi100sh/p/4201031.html

[root@jiexi5 sysconfig]# cat   /etc/inittab   
# inittab is only used by upstart for the default runlevel.
#
# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# System initialization is started by /etc/init/rcS.conf
#
# Individual runlevels are started by /etc/init/rc.conf
#
# Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf
#
# Terminal gettys are handled by /etc/init/tty.conf and /etc/init/serial.conf,
# with configuration in /etc/sysconfig/init.
#
# For information on how to write upstart event handlers, or how
# upstart works, see init(5), init(8), and initctl(8).
#
# Default runlevel. The runlevels used are:
#   0 - halt (Do NOT set initdefault to this)
#   1 - Single user mode
#   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
#   3 - Full multiuser mode
#   4 - unused
#   5 - X11
#   6 - reboot (Do NOT set initdefault to this)
# 
id:3:initdefault:

 

 

 

 以下是兩個網口最初的配置:

網口eth0

DEVICE="eth0"
TYPE=Ethernet
UUID=04b70242-2f07-450a-b69d-4b05a9cf911a
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=none
HWADDR=14:18:77:40:CC:EB
IPADDR=192.168.3.37
PREFIX=24
GATEWAY=192.168.3.1
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System eth0"

 

 

網口eth1

[root@jiexi5 sysconfig]# cd network-scripts/
DEVICE="eth1"
TYPE=Ethernet
BOOTPROTO=none
IPADDR=10.204.250.20
PREFIX=24
GATEWAY=10.204.250.1
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="system eth1"
UUID=06878ed9-2826-4873-87ab-c2355d260671
ONBOOT=yes

 

 

 

GATEWAY=10.204.250.1
DEFROUTE=yes

 

route命令可以添加動態路由,但重啟后失效

linux 路由表設置 之 route 指令詳解

https://www.cnblogs.com/baiduboy/p/7278715.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM