ubuntu 设置静态IP的实现方法
时间:2022-05-27 00:16:01|栏目:Linux|点击: 次
Ubuntu 设定静态IP:
切换到root用户,然后进入/etc/network目录。备份interfaces文件(备份文件是一个好习惯)
下面编辑interfaces文件,添加如下语句:
1 # Assgin static IP by eric on 26-SEP-2012 2 iface eth0 inet static 3 address 192.168.196.135 #change to your static IP 4 netmask 255.255.255.0 #change to your netmask 5 gateway 192.168.196.255 #change to your getway 6 #We must specify dns-nameserver here 7 #in order to get internet access from host 8 dns-nameservers 192.168.196.255 9 auto eth0
栏 目:Linux
下一篇:linux下使用Apache+php实现留言板功能的网站
本文标题:ubuntu 设置静态IP的实现方法
本文地址:https://idc91.com/fuwuqizl/2624.html
您可能感兴趣的文章
- 05-10Ubuntu系统安装ANSYS2021R1
- 05-10ANSYS2021R1安装方法Linux centos Ubuntu系统
- 11-07Linux中一对多配置日志服务器的详细步骤
- 11-07linux服务器安装SonarQube代码检测工具的详细步骤
- 11-07Apache自带的ab压力测试工具的实现
- 11-07apache虚拟主机配置的三种方式(小结)
- 11-07Linux在两个服务器直接传文件的操作方法
- 11-07xshell5使用ssh连接阿里云服务器的实现步骤
- 11-07linux查看服务器开放的端口和启用的端口多种方式
- 11-07Xshell连接centOS7并与CentOS7联网