linux网卡配置及路由配置
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
CentOS系统
系统信息
[root@kafka1 ~]# cat /etc/redhat-release
CentOS Linux release 7.3.1611 (Core)
网卡配置
路由配置
临时路由配置
route add -net 10.1.1.0/24 gw 10.1.2.1
永久路由配置
-
查看/etc/sysconfig/network-scripts/route-<interface文件
找到route-eth1这个网卡对应的文件,你可以用ifconfig查看一下网卡是什么名称。 -
添加你需要添加的永久路由信息
192.168.0.0/16 via 10.124.6.1 dev eth1
把你需要添加的路由写进去,格式都是按照以前已有的或者按照这个来写。
- 重启网络生效
systemctl restart network
Debian系统
系统信息
root@fort:~# uname -a
Linux fort 4.9.0-6-amd64 #1 SMP Debian 4.9.82-1+deb9u3 (2018-03-02) x86_64 GNU/Linux
root@fort:~# cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 9 (stretch)"
NAME="Debian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
网卡配置
主要是配置/etc/network/interfaces文件,配置后的内容如下:
在实际的虚拟机测试中发现,如果网络接口如enp4s3不配置静态IP的话,后面的up route命令是不会生效的,我的测试过程是把静态配置删除掉,虚拟机平台使用dhcp自动分配IP,虚拟机能收到IP,但路由就会失效。再次还是有一个问题,我生产环境中的确也是使用静态IP配置的,但是网络路由不生效。
root@fort:~# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug enp4s3
auto enp4s3
iface enp4s3 inet static
address 172.16.122.249
netmask 255.255.255.0
auto enp4s4
iface enp4s4 inet static
address 172.26.122.125
netmask 255.255.255.0
up route add -net 192.168.0.0 netmask 255.255.0.0 gw 172.26.122.1
down route del -net 192.168.0.0 netmask 255.255.255.0 gw 172.26.122.1
up route add -net 0.0.0.0/0 gw 172.16.122.1 #这条是默认路由
down route del -net 0.0.0.0 netmask 0.0.0.0 gw 172.16.0.1
路由配置
临时路由配置
一:使用 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 netmask 255.255.255.0 gw 192.168.1.1
# route add –net 192.168.1.0/24 eth1
//添加默认网关
# route add default gw 192.168.2.1
//删除路由
# route del –host 192.168.1.11 dev eth0
永久路由配置
二:在linux下设置永久路由的方法:
1.在/etc/rc.local里添加
方法:
route add -net 192.168.3.0/24 dev eth0
route add -net 192.168.2.0/24 gw 192.168.2.254
2.在/etc/sysconfig/network里添加到末尾
方法:GATEWAY=gw-ip 或者 GATEWAY=gw-dev
3./etc/sysconfig/static-routes : (没有static-routes的话就手动建立一个这样的文件)
any net 192.168.3.0/24 gw 192.168.3.254
any net 10.250.228.128 netmask 255.255.255.192 gw 10.250.228.129
4.开启 IP 转发:
# echo "1" >/proc/sys/net/ipv4/ip_forward (临时)
# vi /etc/sysctl.conf --> net.ipv4.ip_forward=1 (永久开启)
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)