Retourner au contenu associé (entrée de forum : ip6tables, laisser passer radvd)
Posté par Tonton Benoit le 26 octobre 2009 à 15:00. En réponse au message ip6tables, laisser passer radvd. Évalué à 2.
# Allow router advertisements on local network segments for icmptype in 133 134 135 136 137 do $IP6TABLES -A INPUT -p icmpv6 --icmpv6-type $icmptype -m hl --hl-eq 255 -j ACCEPT $IP6TABLES -A OUTPUT -p icmpv6 --icmpv6-type $icmptype -m hl --hl-eq 255 -j ACCEPT done
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: tcpdump
Posté par Tonton Benoit . En réponse au message ip6tables, laisser passer radvd. Évalué à 2.
# Allow router advertisements on local network segments
for icmptype in 133 134 135 136 137
do
$IP6TABLES -A INPUT -p icmpv6 --icmpv6-type $icmptype -m hl --hl-eq 255 -j ACCEPT
$IP6TABLES -A OUTPUT -p icmpv6 --icmpv6-type $icmptype -m hl --hl-eq 255 -j ACCEPT
done
Par contre je me demande comment ça se fait que ça ne marche pas sans la règle "OUTPUT" alors que je suis déjà sensé tout accepter en sortie oO.