Ⅰ Linux如何设置上网
linux上网设置经典二法
1、一种是linux共享局域网内的windows主机上网
如果你的网卡linux能够识别的话在安装的时候会有网卡配置过程。从列表中选择网络设备,一般为eth0,点击“编辑”,在打开的“编辑接口”对话框中,用户可以通过DHCP来配置网络,这样也可以,不过我更喜欢定制一个静态IP,所以去掉“使用DHCP进行配置”前面的选项,然后在下面输入你要定制的IP地址和子网掩码,确定后,在下面的网关和主要DNS里输入当前局域网上做为主机的计算机的IP地址。这样装完以后就搞定。
如果你是装完后再安装的网卡的话,那可以在“系统设置”里选择“网络”,如果你的网卡安装成功的话会在下面的列表里看到你的网卡,同样设置DNS(和上面一样),然后再回到列表里,选中你的网卡,点上面的编辑,选中“当计算机启动时激活设备”,然后选择下面的“静态设置的IP地址”,在下面输入和上面同样的设置。再重新启动就可以了。
2、另外一种就是用你的linux通过ADSL上网了
在linux下就集成着一个ADSL拨号软件,打开终端,在里面输入#adsl-setup,然后进行设置:
LOGIN NAME
Enter your Login Name (default root):(输入你的用户名)
INTERFACE
Enter the Ethernet interface connected to the ADSL modem
For Solaris, this is likely to be something like /dev/hme0.
For Linux, it will be ethX, where 'X' is a number.
(default eth0):(选择网络设备)
Do you want the link to come up on demand, or stay up continuously?
If you want it to come up on demand, enter the idle time in seconds
after which the link should be dropped. If you want the link to
stay up permanently, enter 'no' (two letters, lower-case.)
NOTE: Demand-activated links do not interact well with dynamic IP
addresses. You may have some problems with demand-activated links.
Enter the demand value (default no):(选择是按需拨号,还是持续连接)
DNS
Please enter the IP address of your ISP's primary DNS server.
If your ISP claims that 'the server will provide dynamic DNS addresses',
enter 'server' (all lower-case) here.
If you just press enter, I will assume you know what you are
doing and not modify your DNS setup.
Enter the DNS information here:(选择DNS)
PASSWORD
Please enter your Password:
Please re-enter your Password:
USERCTRL
Please enter 'yes' (two letters, lower-case.) if you want to allow
normal user to start or stop DSL connection (default yes):(是否允许普通用户启动、关闭)
The firewall choices are:
0 - NONE: This script will not set any firewall rules. You are responsible
for ensuring the security of your machine. You are STRONGLY
recommended to use some kind of firewall rules.
1 - STANDALONE: Appropriate for a basic stand-alone web-surfing workstation
2 - MASQUERADE: Appropriate for a machine acting as an Internet gateway
for a LAN
Choose a type of firewall (0-2):(选择firewall的规则)
Start this connection at boot time
Do you want to start this connection at boot time?
Please enter no or yes (default no):(选择是否随机启动)
** Summary of what you entered **
Ethernet Interface:
User name:
Activate-on-demand:
DNS addresses:
Firewalling:
User Control:
Accept these settings and adjust configuration files (y/n)?(确认一下是否接受设置)
以上的设置在“系统设置”里 的“网络”里选择新建,建立一个xDSL连接,也可以实现。设置完成了以后在网络里激活连接。
上面的ADSL连接就试过一次,由于我们是局域网,所以一直用的是共享上网,如果有什么错误不要骂我,还请指教!!
Ⅱ Linux怎么连接网络啊
所有人通过交换机访问网关 . 有些modem还有DHCP服务 ,这样无论windows还是linux ,都设置为自动获取IP就行 没有DHCP ,就设置一下固定局域网IP .然后网关设置为modem的IP . 这一切前提就是你的modem是带ADSL路由功能 .具体设置参看modem说明书 . (如果你用的是56K modem ,我啥都不说了 ...) -*-*-*-*-*-*- 现在的配置就是ADSL MODEM自己拨号 ,作为网关192.168.1.1 .MODEM和电脑都连接到HUB ,设置IP地址 ,网关地址 ,DNS服务器地址 .(没有DNS的话只能按IP访问了 . sina.com之类的URL就不行了 .其实有些猫设置好了的话 ,DNS它也可以包揽了的 )-*-之前发现WindowsXP的"网络桥"功能连接过 .这时XP起的作用就相当于一个HUB ,让分别连接在本电脑的2块网卡的2个网络可以互相通讯 .没有HUB的时候可以凑合用 .就是必需保持开机 .好烦 .
Ⅲ linux怎么配置网络连接
1、首先我们打开XShell工具,点击顶部的打开选项,
Ⅳ linux如何进行网络连接
redhat linux中设置网卡固定ip
之前在xwindow下的redhat-config-network 设置网卡固定ip发现不起作用,设置好后就是ping不通。就查了些资料,更改 /etc/sysconfig/network-scripts/ifcfg-eth0(第一个网卡为eth0),配置dns的文件为 /etc/resolv.conf,我保留了dhcp的配置,配置完后用ifconfig eth0 down;ifconfig eth0 up 就可以了。以下是配置文件的清单:
#/etc/sysconfig/network-scripts/ifcfg-eth0:
DEVICE=eth0
BOOTPROTO=static
BROADCAST=192.168.1.255
IPADDR=192.168.1.10
NETMASK=255.255.255.0
NETWORK=192.168.1.0
HWADDR=52:54:AB:2F:CF:F0
GATEWAY=192.168.1.1
ONBOOT=on
TYPE=Ethernet
#/etc/resolv.conf
nameserver 202.109.14.5
nameserver 202.96.209.5
search localdomain
或者使用命令:setup
或者:
route add -net 192.168.1.50 netmask 255.255.255.0 dev eth0
或:
ifconfig eth0 192.168.1.50 netmask 255.255.255.0
ubuntu 网卡设置,ip,mask,gateway,dns
sudo vi /etc/network/interfaces
//这个应该是决定是否启用这个端口
auto eth0
//静态设置IP
iface eth0 inet static
address 172.16.146.200
netmask 255.255.255.0
#broadcast 172.16.146.255
gateway 172.16.146.254
//通过dhcp动态设置
iface eth0 inet dhcp
//设置DNS服务器
sudo vi /etc/resolv.conf
nameserver 202.96.128.68
nameserver 61.144.56.101
nameserver 192.168.8.220
//重新设置网络,以启用新设置
sudo /etc/init.d/networking restart
Ⅳ Linux 如何连接网络
http://hi..com/jason52766/blog/item/3b4ae631f10fc8ae5edf0e82.html
自己去看吧LINUX下使用无线网络不是这么容易的。要额外安装其他的软件和配置,简明扼要是不可能说清楚的。
Ⅵ 怎么用Linux命令联网
linux联网命令上网,和图形用户界面相比,稍微麻烦一点,适合mini的linux,建议图形用户界面的用户还是用简单的方法联网即可。
1:先打开虚拟机至图形用户界面,看一下是否有网络连接
2:同时按住Ctrl+Alt+F2切换到命令行界面
3:开始输入命令打开网络连接,首先输入ifconfig
4:再输入ifup eth0 命令,此命令用来打开网络
5:切换到图形用户界面,查看网络是否已经开启
6:网络已经开启成功,下面用linux自带浏览器打开页面尝试一下上网
7:输入ifdown eth0即可关闭网络,输入之后切换界面观察一下
以上就是怎么用Linux命令联网的操作步骤,希望我的建议能够帮助到你。
Ⅶ linux怎么联网
Linux系统联网,下面以redhat为例,步骤如下:
1.修改网卡的配置文件
vim/etc/sysconfig/network-script/ifcfg-eth0
DEVICE="eth0"
BOOTPROTO="static"#如果是动态的,可以用dhcp;静态也可以用none
HWADDR="00:0C:29:D3:0C:DD"
IPV6INIT="yes"
IPADDR=192.168.1.169#IP地址
NETMASK=255.255.255.0#子网掩码
GATEWAY=192.168.1.1#网关
NM_CONTROLLED="yes"
ONBOOT="yes"#系统启动网卡开关
2.设置网络工作的开关
vim/etc/sysconfig/network
NETWORKING=yes#启动网络工作
HOSTNAME=picaso.localhost#主机名
Ⅷ linux下如何配置网络
1、首先我们用root用户登录linux桌面系统。
Ⅸ Linux如何连接网络
你说的的是ADSL网络吗
需要安装RP-PPPOE
然后进行ADSL的配置,
执行/usr/sbin/adsl-setup
>>> Enter your PPPoE user name: ——此处输入拨号帐号的用户名
>>> Enter the Ethernet interface connected to the ADSL modem For Solaris, this is likely to be something like /dev/hme0. For Linux, it will be ethn, where n is a number. (default eth0): ——输eth0
>>> Enter the demand value (default no): ——输no
>>> Enter the DNS information here: ——输入DNS服务器的IP地址(视当地运营商的DNS服务器IP而定)
>>> Please enter your PPPoE password: ——输用户口令
>>> Choose a type of firewall (0-2): ——输0
>>> Accept these settings and adjust configuration files (y/n)? ——输y
Ⅹ 双系统中,Linux如何连接网络
sudopppoeconf,输入密码,及一系列资料就可以用连接了,那个小女子没那么难……