标签:idg 内存 route add 文件夹 界面 启动 tst get 通信
将Linux主机接入到网络,需要配置网络相关设置
一般包括如下内容:
主机名
IP/netmask
路由:默认网关
DNS服务器
主DNS服务器
次DNS服务器
第三方DNS服务器
1、查看网卡的驱动并且卸载网卡驱动
[root@rhel6 ~]# ethtool -i eth0
driver: e1000 #网卡驱动
[root@rhel6 ~]# modprobe -r e1000 #卸载网卡驱动
2、修改70-persistent-net.rules文件
3、重新加载网卡驱动并且重启网络服务
[root@rhel6 ~]# modprobe e1000 #重新加载网卡驱动
[root@rhel6 ~]# /etc/rc.d/init.d/network restart #重启网络服务
网络配置参考文件:/usr/share/doc/initscripts-9.03.53/sysconfig.txt
网卡的配置在:/etc/sysconfig/network-scripts/下,配置文件:ifcfg-网卡名
配置文件示例:
[root@centos6 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static|dhcp|none
IPADDR=192.168.0.7
NETMASK=255.255.255.0
#PREFIX=24 #子网掩码
GATEWAY=192.168.0.1 内网
DNS1=114.114.114.114 外网
DNS2=8.8.8.8
DNS3=1.1.1.1
TYPE=Ethernet
ONBOOT=yes
HWADDR=00:0C:29:DB:C9:5C
#MACADDR=00:0C:29:DB:C9:5A #修改MAC地址
UUID=38d329c5-b1bb-491b-a669-47422cfda764
NM_CONTROLLED=no
网络配置文件常用配置参数详解:
路由配置文:/etc/sysconfig/network-scripts/route-interface
DNS配置文件:/etc/resolv.conf
本地网络解析配置文件:/etc/hosts
主机名配置文件:
route add -net 10.0.0.0/8 gw 172.20.0.1 dev eth1 #添加一条到10.0.0.0网段的路由
route del -net 10.0.0.0/8 gw 172.20.0.1 #删除10.0.0.0网段的路由
[root@centos7 ~]# netstat -tnulp #显示TCP,UDP的监听状态及相关进程的端口
[root@centos7 ~]# ip addr add 192.168.1.100/24 label eth0:0 dev eth0 #设置临时IP地址
[root@centos7 ~]# ss state established ‘( dport = :ssh or sport = :ssh )‘ #查看已连接状态的ssh
子命令补全功能:yum install bash-completion ,依赖epel源
1、查看信息
[root@centos7 ~]# nmcli device status
[root@centos7 ~]# nmcli connection show
2、删除配置
[root@centos7 ~]# nmcli connection delete ens33
3、增加配置
[root@centos7 ~]# nmcli connection add con-name ens33 ifname ens33 type ethernet ipv4.method auto connection.autoconnect yes
4、切换配置
[root@centos7 ~]# nmcli connection up ens33
5、修改配置文件名ens33 --> ens33-static
[root@centos7 ~]# nmcli connection modify ens33 con-name ens33-static
6、修改配置IP
[root@centos7 ~]# nmcli connection modify ens33-static ipv4.addresses 192.168.0.100/24 ipv4.gateway 192.168.0.1 ipv4.method manual
7、重新读取配置文件
[root@centos7 ~]# nmcli connection reload
8、断开和连接网络连接
[root@centos7 ~]# nmcli device disconnect ens33
[root@centos7 ~]# nmcli device connect ens33
9、查看网络配置的详细信息
[root@centos7 ~]# nmcli connection show ens33
10、在配置中再添加一个地址
[root@centos7 ~]# nmcli connection modify ens33-static +ipv4.addresses 10.0.0.2/8
ping:测试网络命令
[root@centos7 ~]# ping -c1 -W1 192.168.0.6 #脚本中常用的ping测试,ping一次,超时时间1s [root@centos7 ~]# ping -s 65507 -f 192.168.0.6 #竭尽自己所能,向192.168.0.6发出大数据包,ddos攻击
tcpdump:抓包工具
mtr:网络诊断工具
traceroute:跟踪路由
tracepath:跟踪路由
ifup:启用网卡
ifdown:禁用网卡
setup:字符界面配置工具(centos6.x)
system-config-network-tui:字符界面网络配置工具(centos6.x)
hostnamectl:设置主机名工具(centos7.x)
mm-connection-editor:图形界面网络配置工具(centos7.x)
nmtui:字符界面配置工具(centos7.x)
lftp | lftp [-u user[,pass]] [-p port] [-e cmd] FTPSERVER:FTP客户端工具
lftpget URL:非交互式下载ftp服务器的文件
wget:网络下载工具
elinks | links:字符界面web浏览器
Bonding 将多块网卡绑定同一IP地址对外提供服务,可以实现高可用或者负载均衡。直接给 两块网卡设置同一IP地址是不可以的。通过bonding,虚拟一块网卡对外提供连接, 物理网卡的被修改为相同的MAC地址
绑定:将多块网卡绑定同一IP地址对外提供服务,可以实现高可用或者负载均衡。
mode 0:balance-rr 轮调策略:多张网卡可以轮流发数据包,实现负载均衡的功能
mode 1:active-backup 主备策略:其中active网卡的发数据包,其他备用
mode 3:broadcast 广播策略:每个网卡都会发一份包
1、创建bonding的设备配置文件
# cat >/etc/sysconfig/network-scripts/ifcfg-bond0 <<EOF DEVICE=bond0 BOOTPROTO=none BONDING_OPTS="miimon=100 mode=1" IPADDR=192.168.0.6 PREFIX=24 EOF
miimon=100:每100ms进行一次链路检测
2、配置bonding的从属网卡
[root@centos ~]# cat >/etc/sysconfig/network-scripts/ifcfg-eth0 <<EOF DEVICE=eth0 BOOTPROTO=none MASTER=bond0 SLAVE=yes EOF [root@centos6 ~]# cat >/etc/sysconfig/network-scripts/ifcfg-eth1 <<EOF DEVICE=eth1 BOOTPROTO=none MASTER=bond0 SLAVE=yes EOF
3、重启网络服务并查看bonding状态
# /etc/rc.d/init.d/network restart [root@rhel6 ~]# cat /proc/net/bonding/bond0 |head Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) Bonding Mode: fault-tolerance (active-backup) Primary Slave: None Currently Active Slave: eth0 #现在eth0在工作状态 MII Status: up MII Polling Interval (ms): 100 Up Delay (ms): 0 Down Delay (ms): 0
1、禁用bond0并卸载bonding模块
# ip link set bond0 down
# modprobe -r bonding
2、还原配置文件,重启网络
桥接:把一台机器上的若干个网络接口“连接”起来。其结果是,其中一个网口收到的报文会被复制给其他网口并发送出去。以使得网口之间的报文能够互相转发。网桥就是这样一个设备,它有若干个网口,并且这些网口是桥接起来的。与网桥相连的主机就能通过交换机的报文转发而互相通信。
1、创建一个网桥
[root@centos7 ~]# nmcli connection add type bridge con-name br0 ifname br0
2、配置网桥
[root@centos7 ~]# nmcli connection modify br0 ipv4.addresses 192.168.0.7/24 ipv4.method manual
3、将从属网卡加入网桥
[root@centos7 ~]# nmcli connection add type bridge-slave con-name br0-eth0 ifname eth0 master br0
4、启用网桥并查看状态
[root@centos7 ~]# nmcli connection up br0 [root@centos7 ~]# nmcli connection up br0-eth0 [root@centos7 ~]# brctl show bridge name bridge id STP enabled interfaces br0 8000.000c295df21e yes eth0
标签:idg 内存 route add 文件夹 界面 启动 tst get 通信
原文地址:https://www.cnblogs.com/yaun1498078591/p/8994683.html