Skip to content

Commit

Permalink
OSPF : - replace "OPTION_TOS_CAPABILITY = 0x1" by "OPTION_TOS_CAPABIL…
Browse files Browse the repository at this point in the history
…ITY = 0x0"

	because : FRRouting seems to drop automatically packets with this option : [FFRouting OSPF Code](https://github.com/FRRouting/frr/blob/master/ospfd/ospf_packet.c#L942)
	issue #7
  • Loading branch information
Raizo62 committed Oct 2, 2022
1 parent f1819b7 commit 3a95e53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AllSrc/modules/module_ospf.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class ospf_hello(ospf_header):
#+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#| ... |

OPTION_TOS_CAPABILITY = 0x1
OPTION_TOS_CAPABILITY = 0x0
OPTION_EXTERNAL_ROUTING_CAPABILITY = 0x2
OPTION_CONTAINS_LSS = 0x10
OPTION_DEMAND_CIRCUITS = 0x20
Expand Down
2 changes: 1 addition & 1 deletion Files/usr/share/loki/modules/module_ospf.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class ospf_hello(ospf_header):
#+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#| ... |

OPTION_TOS_CAPABILITY = 0x1
OPTION_TOS_CAPABILITY = 0x0
OPTION_EXTERNAL_ROUTING_CAPABILITY = 0x2
OPTION_CONTAINS_LSS = 0x10
OPTION_DEMAND_CIRCUITS = 0x20
Expand Down

0 comments on commit 3a95e53

Please sign in to comment.