云主机的网络结构本质上和传统的网络结构一致,区别大概有两点。
1.软网络管理设备(如nova-network,open switch)部分替代硬件网络设备 。
2.多虚拟服务器共享一个宿主机物理网卡(使用Trunk技术)。 那么对于云服务器的安全,我们也可以采用传统的网络安全...
分类:
其他好文 时间:
2014-05-17 00:39:16
阅读次数:
366
Step1:关闭防火墙 service iptables stop[status] service
iptables status chkconfig --list |grep iptables chkconfig iptables offStep2:修改IP
(重启网卡:se...
分类:
其他好文 时间:
2014-05-16 21:22:50
阅读次数:
318
分类:1)通过mii-tool指令[root@localhostroot]#mii-tooleth0:negotiated100baseTx-FD,linkoketh1:nolink或[root@localhostroot]#mii-tool-veth0:negotiated100baseTx-FD,linkokproductinfo:vendor00:50:43,model2rev3basicmode:autonegotiationenabledbasicstatus:autonegotia..
分类:
系统相关 时间:
2014-05-14 16:38:17
阅读次数:
397
第一种:使用命令修改(直接即时生效,重启失效)#ifconfig eth0
192.168.0.1 netmask 255.255.255.0
up说明:eth0是第一个网卡,其他依次为eth1,eth*192.168.0.1是给网卡配置的第一个网卡配置的ip地址netmask
255.255.25...
分类:
系统相关 时间:
2014-05-14 09:09:43
阅读次数:
428
在window下查看ip情况是ipconfig在Linux下查看是ip是
ifconfigwindow装上虚拟机后,会虚拟出两个网卡 vmnet1 vmnet8在window下用ipconfig在VMware
Workstation中,默认有3个虚拟交换机,分别是VMnet0(使用桥接网络)、VMn...
分类:
系统相关 时间:
2014-05-13 18:41:26
阅读次数:
402
说实话关于笔记本的无线跟有线同时使用的问题(例如有线连接内网,无线连接外网),一直在遇见,一直在解决,但是一直解决透彻,每次都是能用就行也没有深究其原因。举例:有线连接内网,3G网卡连接外网,通过修改路由表能解决问题#定义3G网卡为默认路由
sudorouteadd-net0.0.0..
分类:
其他好文 时间:
2014-05-13 12:03:32
阅读次数:
359
Centos6.3网卡启动需用Ifup-eth0启动问题.使用命令ifupeth0可以正常设置启动,系统重启后或者重启网卡即失效了。永久解决方法1、在/etc/sysconfig/network-scripts/ifcfg-eth0只需修改ONBOOT=yes就OK--引导时是否激活设备DEVICE=eth0BOOTPROTO=noneHWADDR=00:1b:fc:32:6e:c6NM_C..
分类:
其他好文 时间:
2014-05-13 05:02:19
阅读次数:
267
#!/usr/bin/envpythonimportsys,timefromsocketimportsocketdefread_interface(in_file):withfile(in_file)asf:returnf.readlines()[2:]defset_interface(inter_msg):dic={}foriinxrange(len(inter_msg)):dic[inter_msg[i].split(":")[0].strip()]={"in":inter_msg[i].split(":..
分类:
编程语言 时间:
2014-05-13 04:01:55
阅读次数:
432
一、网卡1、Linux:网络属于内核的功能2、网卡定义:a)RHEL5网卡定义文件:/etc/modprobe.confb)RHEL6网卡定义文件:/etc/udev/rules.d/70-persistent-net.rules3、网卡命名:a)lo:本地回环b)以太网网卡:ethXc)点对点连接网卡:pppX4、网卡配置命令a)ifconfig[ethX]:显示网卡信..
分类:
系统相关 时间:
2014-05-13 01:13:33
阅读次数:
434