博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu/Linux网络配置常用命令
阅读量:4876 次
发布时间:2019-06-11

本文共 1202 字,大约阅读时间需要 4 分钟。

配置ip

 
 
打开配置文件 sudo vim /etc/network/interfaces
# This file describes the network interfaces available on your system# and how to activate them. For more information, see interfaces(5).source /etc/network/interfaces.d/*# The loopback network interfaceauto loiface lo inet loopback# The primary network interface#auto enp0s3#iface enp0s3 inet dhcpauto enp0s3iface enp0s3 inet staticaddress 192.168.1.122netmask 255.255.255.0gateway 192.168.1.1

 

重启网络

sudo /etc/init.d/networking restart

关闭防火墙(详情:)

sudo ufw disable

查看防火墙的状态:(状态显示是“inactive”关闭状态。)如果ping不通大多是防火墙的问题

sudo ufw status

修改dns /etc/resolvconf/resolv.conf.d/base里面是空的添加

nameserver 你的DNS1nameserver 你的DNS2

修改DNS楼主亲测 vim /etc/resolv.conf(阿里的DNS)

nameserver 223.5.5.5nameserver 223.6.6.6

重启网络

sudo /etc/init.d/networking restart //14.01版本 sudo ifconfig eth0 downsudo ifconfig eth0 up

默认重启命令行模式

vim  /etc/default/grubGRUB_CMDLINE_LINUX_DEFAULT=""改GRUB_CMDLINE_LINUX_DEFAULT="test"sudo update-grub

查看网卡名

ls /proc/sys/net/ipv4/conf

刷新ip

ip addr flush dev

 

修改网卡名称

http://blog.csdn.net/wy_97/article/details/78294562

温馨提示:

1.虚拟主机和主机之间ip不通,怎么办?

答:绝大多数都是防火墙的问题

2.如果虚拟主机和主机之间可以ping通, 但是不能上网怎么办?

答:肯定是DNS配置问题.

转载于:https://www.cnblogs.com/wangzhaobo/p/7419712.html

你可能感兴趣的文章
【异常】IOException parsing XML document from class path resource [xxx.xml]
查看>>
第五周作业
查看>>
理解#define offsetof(struct_t,member) ((int)&((struct_t *)0)->member)
查看>>
COJ 2135 Day10-例1
查看>>
jdbc之分页查询
查看>>
PHP手动环境搭建之WAMP
查看>>
COJ 1003 WZJ的数据结构(三)ST表
查看>>
sbrk and coreleft
查看>>
树型DP
查看>>
怎么在ubuntu上使用pidgin登陆QQ
查看>>
思维的惰性
查看>>
2018-2019-2 网络对抗技术 20165115 Exp3 免杀原理与实践
查看>>
【Android】学习记录<1> -- 初识ffmpeg
查看>>
定位页面元素的位置
查看>>
关于IAsyncResult接口的CompletedSynchronously属性
查看>>
Python:一篇文章掌握Numpy的基本用法
查看>>
序列化与ArrayList 的elementData的修饰关键字transient
查看>>
理解理解python中的'*','*args','**','**kwargs'
查看>>
php中的闭包类
查看>>
SSH登陆错误 WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!
查看>>