Linux网络配置
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
Linux网络配置
二、主机名配置
#查看主机名
hostname
#修改主机名HOSTNAME
hostnamectl set-hostname HOSTNAME
默认主机名为localhost.localdomain
二、防火墙配置
#查看防火墙状态
systemctl status firewalld
#关闭防火墙
systemctl stop firewalld
#禁用防火墙
systemctl disable firewalld
测试环境下建议禁用防火墙,否则可能会导致部分端口无法使用
禁用后检查此时防火墙状态,状态为inactive (dead)表示已被禁用
三、network配置
1.配置network前先禁用网络管理服务
#查看网络管理服务状态
systemctl status NetworkManager
#关闭网络管理服务
systemctl stop NetworkManager
#禁用网络管理服务
systemctl disable NetworkManager
禁用后检查此时网络管理服务状态,状态为inactive (dead)表示已被禁用
2. 配置network
vi /etc/sysconfig/network-scripts/ifcfg-ens33
#批量删除双引号
:1,$s/\"//g
配置完成后shift+z+z退出并保存配置文件,重启network服务
#重启network服务
systemctl restart network
#通过ping www.baidu.com查看网络是否连接成功
ping www.baidu.com
3.在Windows下查看是否能够ping通配置的虚拟机
通过WIN+R,输入cmd回车进入命令提示符,通过ping虚拟机IP地址确认是否可以连通
4.查看虚拟机IP地址方法
#查看虚拟机ip地址
ip addr
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献6条内容
所有评论(0)