mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
20 lines
826 B
Plaintext
20 lines
826 B
Plaintext
# BGP - Border Gateway Protocol - RFC 1771
|
|
# Pattern attributes: ok veryfast fast
|
|
# Protocol groups: networking ietf_draft_standard
|
|
# Wiki: http://www.protocolinfo.org/wiki/BGP
|
|
# Copyright (C) 2008 Matthew Strait, Ethan Sommer; See ../LICENSE
|
|
#
|
|
# This pattern is UNTESTED.
|
|
|
|
bgp
|
|
# "After a transport protocol connection is established, the first
|
|
# message sent by each side is an OPEN message."
|
|
# "If the Type of the message is OPEN, or if the Authentication Code used
|
|
# in the OPEN message of the connection is zero, then the Marker must be
|
|
# all ones."
|
|
# Then the 2 byte length field, then the 1 byte type field (1 = OPEN).
|
|
# Then the BGP version: 3 was RFC'd in 1991, 4 was RFC'd in 1995.
|
|
# Could keep going, but that should be sufficient.
|
|
^\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff..?\x01[\x03\x04]
|
|
|