Ubuntu16.04 网络配置
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
配置net模式
这块记得也配置一下,IP和你上面的IP网段一致
共享本机网络
这块如果是用无线网络,就再无线网络上点右键进行相应的设置。
配置网卡和静态IP
如果没有vim,也可以使用vi编辑器。
sudo vim /etc/network/interfaces
输入如下内容:
auto ens33
iface ens33 inet static #设置静态IP,动态的是将static修改为dhcp,如果设置为动态IP无法设置虚拟网卡
address 192.168.188.159 # 如果为动态IP以下的都不用配置。
netmask 255.255.255.0
gateway 192.168.188.2
重启服务或者重启机器
service network restart
测试是否联通
ping www.baidu.com
防火墙设置
sudo apt-get install ufw
sudo ufw enable
# 查看防火墙状态
sudo ufw status
# 允许***端口,比如:允许外部访问80端口
sudo ufw allow 80
开启ssh
# 更新apt-get
sudo apt-get update
# 安装ssh 服务端
sudo apt-get install openssh-server -y
# 启动服务
sudo service ssh start
# 查看ssh状态
sudo ps -e | grep ssh
或者
sudo service ssh status
配置服务管理器
# 安装服务管理器
sudo apt-get install sysv-rc-conf -y
# 配置开机启动
sudo sysv-rc-conf
开启ssh
编辑ssh_config和sshd_config文件
sudo vim /etc/ssh/ssh_config
sudo vim /etc/ssh/sshd_config
重启ssh服务
sudo service ssh restart
查看状态
netstat -an | grep "LISTEN "
参考:
- https://www.linuxidc.com/Linux/2017-02/140135.htm
- https://blog.csdn.net/feiyanaffection/article/details/81275717
- https://blog.csdn.net/woaiyaou/article/details/78360382
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 年前
更多推荐
已为社区贡献4条内容
所有评论(0)