transmission:l2tp

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
transmission:l2tp [2024/05/12 19:28]
sthibaul [Documentation]
transmission:l2tp [2024/05/12 19:56] (Version actuelle)
sthibaul [Documentation]
Ligne 65: Ligne 65:
 ``` ```
  
-  * Observer une sesison en particulier:+  * Observer une session en particulier:
  
 ``` ```
Ligne 71: Ligne 71:
     and ( ( ( udp[8] & 0x40 == 0 ) and udp[12] = 0 and udp[13] = 123 ) or     and ( ( ( udp[8] & 0x40 == 0 ) and udp[12] = 0 and udp[13] = 123 ) or
           ( ( udp[8] & 0x40 != 0 ) and udp[14] = 0 and udp[15] = 123 ) )           ( ( udp[8] & 0x40 != 0 ) and udp[14] = 0 and udp[15] = 123 ) )
 +          '
 ``` ```
  
-  * Éventuellement des liens vers de la documentation poussée+  * Observer le dhcpv6: 
 + 
 +``` 
 +sudo tcpdump -v -n -i any 'port l2f 
 +    and (    ( udp[18] == 0x00 and udp[19] == 0x57 and udp[26] == 0x11 and udp[60] == 0x2 and ( udp[61] == 0x22 or udp[61] == 0x23 ) ) 
 +          or ( udp[16] == 0x00 and udp[17] == 0x57 and udp[24] == 0x11 and udp[58] == 0x2 and ( udp[59] == 0x22 or udp[59] == 0x23 ) ) ) 
 +          ' 
 + 
 +``` 
 + 
  • transmission/l2tp.txt
  • Dernière modification: 2024/05/12 19:56
  • de sthibaul