Linux网络配置
GuoJun 2022-04-21 Linux
# 简介
安装Linux,并配置网络实现ssh连接
# 下载镜像
通过清华源加快下载最小无界面镜像(https://mirrors.tuna.tsinghua.edu.cn/centos/7.9.2009/isos/x86_64/)
# 制作U盘启动盘
通过rufus一键开始制作启动盘
# 网络配置
- 进入网卡目录 /etc/sysconfig/network-scripts/ 中ifcfg-*** 就是网卡文件
使用vi 编辑ifcfg-enp1s0 添加配置设置ip,设置方式为static
BOOTPROTO=static ONBOOT=yes IPADDR=192.168.31.50 PREFIX=24 NEXMASK=255.255.255.0 GATEWAY=192.168.31.1 DNS1=114.114.114.114 DNS2=8.8.8.8
更新配置文件
nmcli connection reload enp1s0 ## 重载加载配置 enp1s0为上面网卡名字 nmcli connection up enp1s0 ## ## 重新启动网卡 enp1s0为上面网卡名字
查看配置的IP地址
ip addr