1.root登录2.vi /etc/sysconfig/network-scripts/ifcfg-eth0设置网卡3.设置网卡IP:IPADDR=192.168.0.33 BOOTPROTO=none NETMASK=255.255.255.0 GATEWAY=192.168.0.1 DNS1=1...
分类:
其他好文 时间:
2016-01-03 17:22:55
阅读次数:
131
UBuntu 14.04 LTE设置IP地址和一些服务器版本的Linux还不太一样。以Centos 7.0为例,网卡IP地址的配置文件应该是/etc/sysconfig/network-scripts/ifcfg-eth0首先UBuntu 14.04 LTE下面IP地址的配置文件是/etc/netw...
分类:
系统相关 时间:
2015-12-27 06:14:09
阅读次数:
322
#!/bin/bash-x
ipaddrdel(物理网卡ip地址)/24devem1
#关闭docker服务
servicedockerstop
#删除docker0网桥
ifipaddrshowdevdocker0
then
iplinksetdocker0down
brctldelbrdocker0
fi
#新建br0网桥
brctladdbrbr0
#启用br0并分配IP
iplinksetbr0up
ipaddradd(网桥br0ip..
分类:
Web程序 时间:
2015-12-04 10:58:07
阅读次数:
176
LVS DR 负载均衡集群 试验准备:五台主机ABCDE,主机ABCDE均为单网卡,IP地址分别为192.168.10.2,192.168.10.3,192.168.10.4,192.168.10.5,192.168.10.6。主机A作为内网客户端,主机B负载均衡调度器,主机C和主机D作为网站服务器...
分类:
其他好文 时间:
2015-11-15 22:55:53
阅读次数:
275
前段时间安装了centos mirror以后,没试用过联网功能,今天刚好再次使用centos,然后ping了一下网络,发现失败,使用ifconfig查看了一下网卡,发现网卡ip为:127.0.0.1,大家都知道这个ip地址显然无法连接互联网,然后通过查看/etc/sysconfig/network-...
分类:
数据库 时间:
2015-10-18 15:25:59
阅读次数:
234
1、查看网卡 ifconfig ifconfig -a2、启动网卡 ifconfig eth1 up3、配置网卡IP,在/etc/sysconfig/network-scrip下找到ifcfg-eth1,如果没有cp ifcfg-l0 建立文件, vi ifcfg-eth1修改IP地址:以上使用的桥...
分类:
数据库 时间:
2015-10-16 13:26:52
阅读次数:
179
ForDebianLinux
#dhcp
autoeth0
ifaceeth0inetdhcp
#static
autoeth0
ifaceeth0inetstatic
address10.16.3.99
netmask255.255.255.0
network10.16.3.0
broadcast10.16.3.255
gateway10.16.3.1
/etc/init.d/networkingrestartForRedhatLinux临时修改网卡IP
ifconfigeth0172....
分类:
Web程序 时间:
2015-10-06 15:32:08
阅读次数:
238
一、 Fedora系统配置1. 【设置网卡IP】步骤如下:1) 用root用户登陆,打开/etc/sysconfig/network-scripts/ifcfg-eth0文件注意:打开的文件要根据网卡来设置,如:网卡eth1的配置文件就是ifcfg-eth1。2) 设置以下内容:DEVICE=eth...
分类:
系统相关 时间:
2015-09-22 14:19:09
阅读次数:
408
1、QT下QString RuntimeConfig::ipAddress(QString network){ QList list; QString localIPaddress; QNetworkInterface interface = QNetworkInterface::...
分类:
编程语言 时间:
2015-09-21 17:28:19
阅读次数:
178
通过xshell或者securecrt远程至虚拟机中安装的系统虚拟机网络选项设置,选择Host-onlyAdapter设置本地网络设置virtualbox虚拟网卡的ip4.指定centos中的ip5.编辑centos的ip,要和windows中的virtualbox虚拟网卡ip在同一网段上6.在windows上ping虚拟机,查看能否ping通7.用xshell..
分类:
系统相关 时间:
2015-09-19 13:58:19
阅读次数:
227