本博文將為您介紹ubuntu12.04下設定ipv6 的步驟與方法。
1、安裝miredo。
$sudo apt-get install miredo
2、修改防火牆ipv6設定
以root許可權開啟ufw的配置檔案: "/etc/default/ufw",找到"ipv6=no"這一行,將其改為"ipv6=yes"。
最後禁用/啟用防火牆來使剛剛的改動生效:
$ sudo ufw disable
$ sudo ufw enable
3、重啟網路
$sudo invoke-rc.d networking restart
4、測試是否設定成功
$ping6 ipv6.google.com
ping ipv6.google.com(2404:6800:4005:c00::93) 56 data bytes
ping: sendmsg: operation not permitted
ping: sendmsg: operation not permitted
5.設定ip6tables
$sudo ip6tables -l(檢視ip6tables防火牆規則)
$sudo ip6tables -t filter -a output -j accept
原文發布時間為:2023年12月15日
Ubuntu 12 04 靜態ip的設定方法
1.配置靜態ip位址 sudo vi etc network inte ces 原有內容只有如下兩行 auto lo iface lo inet loopback 向末尾追加以下內容 auto eth0 iface eth0 inet static address 192.168.0.33 gate...
Ubuntu 12 04 靜態ip的設定方法
linux驅動開發培訓系列教程 1.配置靜態ip位址 sudo vi etc network inte ces 原有內容只有如下兩行 auto lo iface lo inet loopback 向末尾追加以下內容 auto eth0 iface eth0 inet static address 1...
ubuntu12 04配置靜態IP及設定DNS
靜態ip配置方法 sudo gedit etc network inte ces auto eth0 iface eth0 inet static 指定為static address 192.168.1.103 ip位址 gateway 192.168.1.1 閘道器 netmask 255.255...