├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ ├── lint.yml │ └── preview.yml ├── .gitignore ├── CNAME ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── default.nix ├── docs ├── assets │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── roboto-mono-v23-latin-700.woff2 │ │ ├── roboto-mono-v23-latin-regular.woff2 │ │ ├── roboto-v30-latin-300.woff2 │ │ ├── roboto-v30-latin-300italic.woff2 │ │ ├── roboto-v30-latin-700.woff2 │ │ ├── roboto-v30-latin-700italic.woff2 │ │ ├── roboto-v30-latin-italic.woff2 │ │ └── roboto-v30-latin-regular.woff2 │ └── images │ │ └── protect_your_bgp_session_001.png ├── contribution │ ├── example-networks.md │ ├── formatting.md │ ├── index.md │ └── media │ │ ├── fork1.png │ │ ├── fork2.png │ │ ├── fork3.png │ │ ├── fork4.png │ │ ├── git-push-pr-link.png │ │ └── github.dev.png ├── guides │ ├── control_plane_protection │ │ ├── index.md │ │ ├── keyring.md │ │ ├── md5-session-password.md │ │ ├── tcp-authentication-option.md │ │ └── ttl-security.md │ ├── forwarding_filter │ │ └── index.md │ ├── index.md │ └── route_filtering │ │ ├── inbound │ │ ├── as_path_length.md │ │ ├── blackhole.md │ │ ├── bogon_asn.md │ │ ├── bogon_prefixes.md │ │ ├── default_route.md │ │ ├── graceful_shutdown.md │ │ ├── index.md │ │ ├── maintenance_switch.md │ │ ├── max_prefix.md │ │ ├── number_of_bgp_communities.md │ │ ├── origin_type.md │ │ ├── own_bgp_communities.md │ │ ├── own_prefix.md │ │ ├── peer_locking.md │ │ ├── peering_lan.md │ │ ├── prefix_length.md │ │ ├── require_policy.md │ │ ├── rpki.md │ │ ├── set_own_informational_bgp_communities.md │ │ └── tier1_asn.md │ │ └── outbound │ │ ├── customer_prefix.md │ │ ├── index.md │ │ ├── maintenance_switch.md │ │ ├── max_prefix.md │ │ ├── own_prefix.md │ │ └── well_known_communities_traffic_engineering.md ├── index.md ├── stylesheets │ └── extra.css └── working_group │ └── index.md ├── mkdocs.yml ├── requirements.txt └── shell.nix /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/CNAME -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/default.nix -------------------------------------------------------------------------------- /docs/assets/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/fonts/LICENSE.txt -------------------------------------------------------------------------------- /docs/assets/fonts/roboto-mono-v23-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/fonts/roboto-mono-v23-latin-700.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/roboto-mono-v23-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/fonts/roboto-mono-v23-latin-regular.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/roboto-v30-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/fonts/roboto-v30-latin-300.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/roboto-v30-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/fonts/roboto-v30-latin-300italic.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/roboto-v30-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/fonts/roboto-v30-latin-700.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/roboto-v30-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/fonts/roboto-v30-latin-700italic.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/roboto-v30-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/fonts/roboto-v30-latin-italic.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/roboto-v30-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/fonts/roboto-v30-latin-regular.woff2 -------------------------------------------------------------------------------- /docs/assets/images/protect_your_bgp_session_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/assets/images/protect_your_bgp_session_001.png -------------------------------------------------------------------------------- /docs/contribution/example-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/contribution/example-networks.md -------------------------------------------------------------------------------- /docs/contribution/formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/contribution/formatting.md -------------------------------------------------------------------------------- /docs/contribution/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/contribution/index.md -------------------------------------------------------------------------------- /docs/contribution/media/fork1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/contribution/media/fork1.png -------------------------------------------------------------------------------- /docs/contribution/media/fork2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/contribution/media/fork2.png -------------------------------------------------------------------------------- /docs/contribution/media/fork3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/contribution/media/fork3.png -------------------------------------------------------------------------------- /docs/contribution/media/fork4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/contribution/media/fork4.png -------------------------------------------------------------------------------- /docs/contribution/media/git-push-pr-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/contribution/media/git-push-pr-link.png -------------------------------------------------------------------------------- /docs/contribution/media/github.dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/contribution/media/github.dev.png -------------------------------------------------------------------------------- /docs/guides/control_plane_protection/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/control_plane_protection/index.md -------------------------------------------------------------------------------- /docs/guides/control_plane_protection/keyring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/control_plane_protection/keyring.md -------------------------------------------------------------------------------- /docs/guides/control_plane_protection/md5-session-password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/control_plane_protection/md5-session-password.md -------------------------------------------------------------------------------- /docs/guides/control_plane_protection/tcp-authentication-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/control_plane_protection/tcp-authentication-option.md -------------------------------------------------------------------------------- /docs/guides/control_plane_protection/ttl-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/control_plane_protection/ttl-security.md -------------------------------------------------------------------------------- /docs/guides/forwarding_filter/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/forwarding_filter/index.md -------------------------------------------------------------------------------- /docs/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/index.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/as_path_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/as_path_length.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/blackhole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/blackhole.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/bogon_asn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/bogon_asn.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/bogon_prefixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/bogon_prefixes.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/default_route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/default_route.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/graceful_shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/graceful_shutdown.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/index.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/maintenance_switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/maintenance_switch.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/max_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/max_prefix.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/number_of_bgp_communities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/number_of_bgp_communities.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/origin_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/origin_type.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/own_bgp_communities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/own_bgp_communities.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/own_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/own_prefix.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/peer_locking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/peer_locking.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/peering_lan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/peering_lan.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/prefix_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/prefix_length.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/require_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/require_policy.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/rpki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/rpki.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/set_own_informational_bgp_communities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/set_own_informational_bgp_communities.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/inbound/tier1_asn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/inbound/tier1_asn.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/outbound/customer_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/outbound/customer_prefix.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/outbound/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/outbound/index.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/outbound/maintenance_switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/outbound/maintenance_switch.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/outbound/max_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/outbound/max_prefix.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/outbound/own_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/outbound/own_prefix.md -------------------------------------------------------------------------------- /docs/guides/route_filtering/outbound/well_known_communities_traffic_engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/guides/route_filtering/outbound/well_known_communities_traffic_engineering.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/working_group/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/docs/working_group/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/requirements.txt -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denog/routing-guide/HEAD/shell.nix --------------------------------------------------------------------------------