@a5635268
2017-04-03T20:49:31.000000Z
字数 1245
阅读 1958
Linux
cat /etc/sysconfig/network-scripts/ifcfg-enp2s0
ifcfg-eth0 已变名称为enpxxx
;ifcfg-enp2s0
如下信息(其他保持不变):
BOOTPROTO=static
NAME=eth0
ONBOOT=yes
NETMASK = 255.255.255.0
IPADDR = 192.168.2.21
GATEWAY=192.168.2.1
DNS1 = 8.8.8.8
5. 重命名ifcfg-enp2s0
文件为eth0
6. 更改 vi /etc/default/grub
如下信息
GRUB_CMDLINE_LINUX="crashkernel=auto net.ifnames=0 biosdevname=0 rhgb quiet" # 只需加入net.ifnames=0 biosdevname=0,不做其他修改
7. 退出后执行 grub2-mkconfig -o /boot/grub2/grub.cfg
8. yum install net-tools
9. 重启电脑后即可联网
临时更改ip ifconfig eth0 192.168.1.21
获得动态IP dhclient
临时更改 ifconfig eth0 192.168.1.10 broadcast 192.168.1.255 netmask 255.255.255.0
centos7查看IP地址:ip addr show eth0搜索。
设置IP地址:ip addr add 192.168.1.1/24 dev eth0。
删除IP地址:ip addr del 192.168.1.1 dev eth0。
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
2. 设置 iptables service
yum -y install iptables-services
systemctl restart iptables.service #重启防火墙使配置生效
systemctl enable iptables.service #设置防火墙开机启动
yum install mlocate # 安装完之后马上updatedb一下
http://jingyan.baidu.com/article/ac6a9a5e40842f2b653eaca5.html
使用前要先安装 yum -y install lrzsz
rz 接收
sz 发送
ln -s 原文件 目标路径