2012年7月12日 星期四

Hyper-V常用命令

Hyper-V常用命令

啟動伺服器選單
sconfig

圖形化管理
1.安裝CoreConfig
2.c:\>CoreConfig\Start_Coreconfig.wsf

Hyper-V 2008關閉防火牆方式(預設開啟防火牆)
1.開啟Hyper-V命令視窗
2.c:\> netsh advfirewall set currentprofile state on //開啟防火牆
3.c:\> netsh advfirewall set currentprofile state off //關閉防火牆

設定允許或禁止ping回應
netsh advfirewall firewall add rule name="ICMP Allow incoming IPv4 echo request" protocol=icmpv4:8,any dir=in action=allow  //首先建立防火牆規則
netsh advfirewall firewall set rule name="ICMP Allow incoming IPv4 echo request" new enable=yes  //允許 ping
netsh advfirewall firewall set rule name="ICMP Allow incoming IPv4 echo request" new enable=no   //禁止 ping

2012年7月11日 星期三

Linux下以指令方式設定ipv6指令

假設電腦所要設定的IPv6網址為2001:288:7304::33:17,設定方式如下


設定ipv6 ip
#ip addr add 2001:288:7304::33:172 dev eth0
檢查設定結果
#ip -6 addr show

設定ipv6 route
#ip route add 2001:288:7304::/64 dev eth0
檢查設定結果
#ip -6 route show

設定Default Gateway
#route -A inet6 add 2001:288:7304::/64 gw 2001:288:7304::fffe
檢查設定結果
#ip -6 route show