当前位置: 技术问答>linux和unix
kubuntu8.04如何设置静态ip?
来源: 互联网 发布时间:2016-03-21
本文导语: kubuntu8.04如何设置静态ip? 最好能给我们这些菜鸟总结一下,各种环境下的静态ip配置,文本模式下、图形模式下(如:gnome、kde)。 小弟先谢谢各位大侠了。有时设置会碰到权限问题,如何解决。 | ...
kubuntu8.04如何设置静态ip?
最好能给我们这些菜鸟总结一下,各种环境下的静态ip配置,文本模式下、图形模式下(如:gnome、kde)。
小弟先谢谢各位大侠了。有时设置会碰到权限问题,如何解决。
最好能给我们这些菜鸟总结一下,各种环境下的静态ip配置,文本模式下、图形模式下(如:gnome、kde)。
小弟先谢谢各位大侠了。有时设置会碰到权限问题,如何解决。
|
图形模式下 和windows没啥区别,找到网络设置部分,输入ip,掩码,网关和dns即可
文本模式下
修改过的/etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.200.99
netmask 255.255.255.0
gateway 192.168.200.100
启动项 /etc/init.d/networking
重启 sudo /etc/init.d/networking restart
文本模式下
修改过的/etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.200.99
netmask 255.255.255.0
gateway 192.168.200.100
启动项 /etc/init.d/networking
重启 sudo /etc/init.d/networking restart
|
图形界面有时配置不能生效,我用的是ubuntu8。04的,命令配置是(也许可以帮的上忙)
IP命令行配置如下:
sudo gedit /etc/network/interfaces
DHCP配置如下(假设通过eth1上网)
# The primary network interface - use DHCP to find our address
auto eth1
iface eth1 inet dhcp //指定为dhcp
然后重启
sudo /etc/init.d/networking restart
静态IP地址配置如下(假设通过eth1上网)
# The primary network interface
auto eth1
iface eth1 inet static//指定为static
address 192.168.3.90//IP地址
gateway 192.168.3.1//网关
netmask 255.255.255.0//子网掩码
同样需要重启
sudo /etc/init.d/networking restart
如果有必要,配置DNS
sudo gedit /etc/resolv.conf
nameserver 192.168.3.2
试试看吧!
IP命令行配置如下:
sudo gedit /etc/network/interfaces
DHCP配置如下(假设通过eth1上网)
# The primary network interface - use DHCP to find our address
auto eth1
iface eth1 inet dhcp //指定为dhcp
然后重启
sudo /etc/init.d/networking restart
静态IP地址配置如下(假设通过eth1上网)
# The primary network interface
auto eth1
iface eth1 inet static//指定为static
address 192.168.3.90//IP地址
gateway 192.168.3.1//网关
netmask 255.255.255.0//子网掩码
同样需要重启
sudo /etc/init.d/networking restart
如果有必要,配置DNS
sudo gedit /etc/resolv.conf
nameserver 192.168.3.2
试试看吧!
|
网络配置需要 sudo 权限的
可以在 console 运行,
可以在 console 运行,
sudo network-admin
|
用netconfig试一试,不过我的是Fedora
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。