码迷,mamicode.com
首页 > 其他好文 > 详细

ubuntu网络设置

时间:2014-09-16 01:33:19      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:http   使用   ar   文件   art   sp   on   c   ad   

1.桥接

1. 以DHCP方式配置网卡

sudo vi /etc/network/interfaces 并用下面的行来替换有关eth0的行:

auto eth0

iface eth0 inet dhcp

 

2. 为网卡配置静态IP地址

sudo vi /etc/network/interfaces

auto eth0

iface eth0

inet static address 192.168.2.1

gateway 192.168.2.254

netmask 255.255.255.0

#network 192.168.2.0

#broadcast 192.168.2.255

 

3. 设置dns.

etc/resolv.conf文件的内容应为:

nameserver 8.8.8.8(谷歌的免费dns服务器地址)

 

4.手动重启网络服务: sudo /etc/init.d/networking restart

 

为了使用secureCRT,需要在ubuntu上安装ssh服务器

sudo apt-get install openssh-server

 

apt-cache search softwarename

wget http://...

ubuntu网络设置

标签:http   使用   ar   文件   art   sp   on   c   ad   

原文地址:http://www.cnblogs.com/johnsblog/p/3974031.html

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