码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu-server14.04 网络配置

时间:2018-10-17 14:42:04      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:class   etc   interface   more   The   res   start   网卡配置   info   

 

一.启动网卡

ubuntu server 安装后,ifconfig 发现只有一个lo 和一个p1p1 网卡,

先查看服务器网卡:ifconfig -a ,发现有lo ,p1p1,p2p1,p3p1,p4p1

要启动其他网卡,可以通过

ifconfig p2p1 up    #启动p2p1网卡

 

二.配置网卡

如果需要把网卡配置为指定ip的,

首先

vi /etc/network/interfaces

 

添加网卡p2p1,p3p1,p4p1

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto p1p1
iface p1p1 inet dhcp
iface p2p1 inet dhcp
iface p3p1 inet dhcp
iface p4p1 inet dhcp

  

示例:
address 127.127.127.127 
netmask 255.255.255.0
gateway 127.127.127.254

配置:
ifconfig em1 127.127.127.127 netmask 255.255.255.0
route add default gw 127.127.127.254 #添加网关

#重启网卡
/etc/init.d/networking restart 
ifconfig em1 down 
ifconfig em1 up 
ifconfig #查看 
service networking restart #不用sudo

参考:https://blog.csdn.net/lingbofeiyun/article/details/51566799

ubuntu-server14.04 网络配置

标签:class   etc   interface   more   The   res   start   网卡配置   info   

原文地址:https://www.cnblogs.com/sea-stream/p/9803421.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!