SlideShare a Scribd company logo
1 of 49
Download to read offline
L2TP 101
ON-RAMP TO CONSUMING
WHOLESALE BROADBAND SERVICES
https://faelix.link/netmcr57
About Marek
Stuff I do:
CTO @FAELIX – https://faelix.net/
PC @uknof – https://uknof.uk/
Crew @net_mcr – https://www.netmcr.uk/
Trail of SSIDs in my wake: "AS41495 Faelix Limited"
Me — @maznu – @NetworkMoose
This Talk
Aimed at anyone starting their journey with
providing ADSL/FTTC/SoGEA/GFast/FTTP via
wholesale L2TP.
Will touch on ISO/OSI layers 1-7 + 8 + 9.
L1: THE LAST MILE
WLR
router
modem
ONT
etc
street furniture
exchange
“telephone
network”
ISP
box
ISP
edge
device
W
LR
ADSL
router
modem
ONT
etc
street furniture
exchange
“telephone
network”
ISP
box
ISP
edge
device
Fibre
Copper
W
LR
FTTC
router
modem
ONT
etc
street furniture
exchange
“telephone
network”
ISP
box
ISP
edge
device
Fibre
Copper
W
LR
SoGEA
router
modem
ONT
etc
street furniture
exchange
“telephone
network”
ISP
box
ISP
edge
device
Fibre
Copper
GFast
router
modem
ONT
etc
street furniture
exchange
“telephone
network”
ISP
box
ISP
edge
device
Fibre
Copper
W
LR
FTTP
router
modem
ONT
etc
street furniture
exchange
“telephone
network”
ISP
box
ISP
edge
device
Fibre
VoIP
FTTP: The ONT
Copper demarcation is “BT Master Socket”
Fibre demarcation is “The ONT”
PON fibre in, ethernet out (and maybe FXS for VoIP)
Some ONTs have multiple ethernet ports
Separate customer services, multiple providers
Total bandwidth still limited by the PON
FTTP: Single-Port ONT
https://order.faelix.net/product/broadband/availability/zen/
FTTP: Multi-Port ONT
https://order.faelix.net/product/broadband/availability/zen/
L2: BROADBAND
Overview
router
modem
ONT
etc
street furniture
exchange
ISP
edge
device
PPP
“telephone
network”
ISP
box
Overview
router
modem
ONT
etc
street furniture
exchange
wholesale
“provider”
network
ISP
LNS
ISP
edge
device
PPPoE
L2TP
L2.5: L2TP
L2TP (v2)
L2TP = Layer-2 Tunnelling Protocol
Typically IPv4 UDP port 1701
20 (IP) + 8 (UDP) + 12 (L2TP) bytes of headers
Multiple sessions within one tunnel
Tunnels can be authenticated with secret
PPP sessions can be authenticated
Can add/drop L2TP sessions in and out of tunnels
Terminology
LNS = L2TP Network Server
LAC = L2TP Access Concentrator
LTS = L2TP Tunnel Switch (Cisco “L2TP Multihop”)
RADIUS = Remote Authentication Dial-In User
Service
Overview
router
modem
ONT
etc
street furniture
exchange
wholesale
“provider”
network
ISP
LNS
ISP
edge
device
Overview
ISP
edge
LTS
LTS
LAC
LNS
PPPoE
L2TP
RADIUS
AAA
LAC and LNS
LAC “concentrates” (aggregates) customers
Based on the authenticating user’s realm it will try
to create an L2TP tunnel and session to your LNS
Might use RADIUS steering to determine LNS’ IPs
and L2TP secrets
Or might have a static per-realm configuration
And now you’re running PPP end-to-end!
Steering
ISP
edge
LTS
LTS
LAC
LNS
PPPoE
RADIUS
Steering
ISP
edge
LTS
LTS
LAC
LNS
RADIUS
Access-Request
Steering
ISP
edge
LTS
LTS
LAC
LNS
Access-Accept
Tunnel-Server-Endpoint := 192.0.2.1
Tunnel-Password := hunter2
Tunnel-Type := L2TP
Tunnel-Medium-Type := IP
RADIUS
Steering
ISP
edge
LTS
LTS
LAC
LNS
L2TP
RADIUS
Steering
ISP
edge
LTS
LTS
LAC
LNS
RADIUS
Access-Request
Steering
ISP
edge
LTS
LTS
LAC
LNS
RADIUS
Access-Accept
Framed-Protocol := PPP
Framed-Address := 198.51.100.1
Framed-Netmask := 255.255.255.255
Framed-IPv6-Prefix: 2001:db8::/32
NAS-Port-Id: ppp123
PPPoE
L2TP
Steering
ISP
edge
LTS
LTS
LAC
LNS
RADIUS
PPP
L3-7: SHOW CONFIG
LNS Implementations
Cisco IOS-pretty-much-everything
Juniper JunOS, Nokia SR OS, etc
MikroTik RouterOS
VyOS 1.3 (accel-ppp)
Ubiquiti EdgeOS (can only LNS with IPsec)
Linux: accel-ppp, xl2tpd, l2tpnsd
MikroTik RouterOS: PPPoE
/interface ethernet
set [find name=ether1] mtu=1508 l2mtu=1540
/interface pppoe-client
add disabled=no name="pppoe-access"
user=“user@realm” password="password"
max-mru=1500 max-mtu=1500
use-peer-dns=yes add-default-route=yes
profile=default allow=pap,chap
keepalive-timeout=60
interface=ether1
VyOS: LNS
interfaces {
ethernet eth1 {
mtu 9000
offload {
sg
}
}
}
protocols {
bgp … {
}
}
VyOS: LNS
vpn {
l2tp {
remote-access {
ccp-disable
client-ip-pool {
start 100.64.0.1
stop 100.64.0.254
}
client-ipv6-pool {
delegate 2001:db0:44f3::/48 {
delegation-prefix 56
}
prefix 2001:db0:44f3:ff00::/56 {
}
}
}
}
}
vpn {
l2tp {
remote-access {
gateway-address 203.0.113.1
lns {
shared-secret hunter2
}
mtu 1500
name-server 9.9.9.9
name-server 1.1.1.1
outside-address 192.0.2.2
}
}
}
vpn {
l2tp {
remote-access {
authentication {
local-users {
username user@realm {
password password
static-ip 203.0.113.2
}
}
mode local
mppe deny
require chap
require mschap
require mschap-v2
require pap
}
}
}
}
VyOS: LNS
vpn {
l2tp {
remote-access {
authentication {
mode radius
radius {
server 198.51.100.1 {
key letmein
}
server 198.51.100.2 {
key letmein
}
source-address 192.0.2.2
}
}
}
}
}
MikroTik RouterOS: LNS
/routing bgp instance …
/routing bgp peer …
/ip address …
/interface ethernet
set [find name=ether1] mtu=1560 l2mtu=1600
MikroTik RouterOS: LNS
/ppp l2tp-secret
add address=192.0.2.0/29 secret=hunter2
/ppp profile
add name=LNS dns-server=9.9.9.9,1.1.1.1
local-address=203.0.113.1 only-one=yes
use-compression=no use-encryption=no use-mpls=no
/interface l2tp-server server
set enabled=yes authentication=pap,chap
caller-id-type=number default-profile=LNS
max-mru=1500 max-mtu=1500
MikroTik RouterOS: LNS
/ppp secret
add name=user@realm password=password
profile=LNS remote-address=203.0.113.2 service=l2tp
remote-ipv6-prefix=2001:db8::/112
/radius
add address=198.51.100.1 secret=letmein service=ppp
add address=198.51.100.2 secret=letmein service=ppp
/ppp aaa
set use-radius=yes
FreeRADIUS: Steering
update {
reply:Tunnel-Server-Endpoint:0 = “192.0.2.1”
reply:Tunnel-Password:0 = "hunter2"
reply:Tunnel-Type:0 = L2TP
reply:Tunnel-Medium-Type:0 = IP
control:Auth-Type = "Accept"
}
Full write-up at faelix.net/news (includes ExaBGP
and service tests for HA)
FreeRADIUS: AAA
Actually nothing clever required!
We added a feature to our setup:
user+steer@realm
treated as user@steer.realm for session steering
but treated as user@realm for auth
user+steer@realm
Steer sessions from user-side to specific LNSs
One tunnel to London, another to Manchester
BGP route servers to receive nearby IX CDN prefixes
Anycast DNS helps CDNs to serve traffic locally
Will be giving a talk about this at LINX on 31st March
L8+9: PROVIDERS
Experience: Enta
Available in: MA1, THN, THW, THE, LD8…
Seemed easy to onboard with
Were still Mbit/sec charges on some packages
Else strong expectation to achieve MoQ
BTW and Enta LLU
NB: we didn’t finish onboarding with Enta, but might
complete this in future if demand/requirement
Experience: ICUK
Available in: THN, THW, LD8
Pretty easy to on-board with: sent an email
Apply for your OFCOM RID before starting
Deposit required, plus some setup charges
One realm per customer, statically steered
One 1G NNI (unless you reach volume targets based
on lines, or pay monthly for extra NNI)
BTW and TTB
Experience: Zen
Available in: MA1, THN, THE… LON1/2/3?
Took ages to get them to talk to us
Dedicated onboarding, weekly progress meetings
Unlimited realms, supports RADIUS steering
Expectation of multiple 10G NNIs
“Want to see a sales path to hundreds of tails in Y1”
BTW and Zen LLU (and TTB, but not on wholesale)
Experience: APIs
ICUK’s API is easy for availability searches and
ordering (albeit slightly unusual authentication)
Zen’s API doesn’t like User-Agent: /.*python.*/
ICUK’s API for everything: WLR and broadband
Zen’s API only for broadband, can’t choose network
WLR is third-party, doesn’t seem to be API?
Experience: Price
£
Mbit/sec
ADSL FTTC GFast FTTP
10
20
30
60
BTW via ICUK
BTW via ICUK
Market A
TTB via ICUK
Zen BTW
Market A
Zen
Wholesale Line Rental
The “copper pair” required for ADSL, FTTC, GFast
Approximately £9-11/month (plus calls)
“Naked” FTTC = SoGEA (no telephone line)
SoGFast exists (but not always productised)
Services are slightly cheaper overall
FTTP has no copper pair, all fibre, VoIP telephony
ASK ME
ABOUT
BROADBAND
E: marek @ faelix . net
T: @maznu
T: @faelix
W: https://faelix.net/
https://faelix.link/netmcr57

More Related Content

What's hot

ISP load balancing with mikrotik nth
ISP load balancing with mikrotik nthISP load balancing with mikrotik nth
ISP load balancing with mikrotik nthAchmad Mardiansyah
 
CISCO Virtual Private LAN Service (VPLS) Technical Deployment Overview
CISCO Virtual Private LAN Service (VPLS) Technical Deployment OverviewCISCO Virtual Private LAN Service (VPLS) Technical Deployment Overview
CISCO Virtual Private LAN Service (VPLS) Technical Deployment OverviewAmeen Wayok
 
Segment Routing for Dummies
Segment Routing for DummiesSegment Routing for Dummies
Segment Routing for DummiesGary Jan
 
Introduction to nexux from zero to Hero
Introduction to nexux  from zero to HeroIntroduction to nexux  from zero to Hero
Introduction to nexux from zero to HeroDhruv Sharma
 
20 - IDNOG03 - Franki Lim (ARISTA) - Overlay Networking with VXLAN
20 - IDNOG03 - Franki Lim (ARISTA) - Overlay Networking with VXLAN20 - IDNOG03 - Franki Lim (ARISTA) - Overlay Networking with VXLAN
20 - IDNOG03 - Franki Lim (ARISTA) - Overlay Networking with VXLANIndonesia Network Operators Group
 
Vxlan control plane and routing
Vxlan control plane and routingVxlan control plane and routing
Vxlan control plane and routingWilfredzeng
 
Building DataCenter networks with VXLAN BGP-EVPN
Building DataCenter networks with VXLAN BGP-EVPNBuilding DataCenter networks with VXLAN BGP-EVPN
Building DataCenter networks with VXLAN BGP-EVPNCisco Canada
 
Mikrotik Bridge Deep Dive
Mikrotik Bridge Deep DiveMikrotik Bridge Deep Dive
Mikrotik Bridge Deep DiveGLC Networks
 
Meraki vs. Viptela: Which Cisco SD-WAN Solution Is Right for You?
Meraki vs. Viptela: Which Cisco SD-WAN Solution Is Right for You?Meraki vs. Viptela: Which Cisco SD-WAN Solution Is Right for You?
Meraki vs. Viptela: Which Cisco SD-WAN Solution Is Right for You?Insight
 
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain. What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain. Kellton Tech Solutions Ltd
 
802.11r Explained.
802.11r Explained. 802.11r Explained.
802.11r Explained. Ajay Gupta
 
Juniper mpls best practice part 1
Juniper mpls best practice   part 1Juniper mpls best practice   part 1
Juniper mpls best practice part 1Febrian ‎
 

What's hot (20)

EtherChannel Configuration
EtherChannel ConfigurationEtherChannel Configuration
EtherChannel Configuration
 
ISP load balancing with mikrotik nth
ISP load balancing with mikrotik nthISP load balancing with mikrotik nth
ISP load balancing with mikrotik nth
 
CISCO Virtual Private LAN Service (VPLS) Technical Deployment Overview
CISCO Virtual Private LAN Service (VPLS) Technical Deployment OverviewCISCO Virtual Private LAN Service (VPLS) Technical Deployment Overview
CISCO Virtual Private LAN Service (VPLS) Technical Deployment Overview
 
Segment Routing for Dummies
Segment Routing for DummiesSegment Routing for Dummies
Segment Routing for Dummies
 
Introduction to nexux from zero to Hero
Introduction to nexux  from zero to HeroIntroduction to nexux  from zero to Hero
Introduction to nexux from zero to Hero
 
Epc cups overview
Epc cups overviewEpc cups overview
Epc cups overview
 
20 - IDNOG03 - Franki Lim (ARISTA) - Overlay Networking with VXLAN
20 - IDNOG03 - Franki Lim (ARISTA) - Overlay Networking with VXLAN20 - IDNOG03 - Franki Lim (ARISTA) - Overlay Networking with VXLAN
20 - IDNOG03 - Franki Lim (ARISTA) - Overlay Networking with VXLAN
 
Mikro tik advanced training
Mikro tik advanced trainingMikro tik advanced training
Mikro tik advanced training
 
CCNA presentation.
CCNA presentation.CCNA presentation.
CCNA presentation.
 
Vxlan control plane and routing
Vxlan control plane and routingVxlan control plane and routing
Vxlan control plane and routing
 
Building DataCenter networks with VXLAN BGP-EVPN
Building DataCenter networks with VXLAN BGP-EVPNBuilding DataCenter networks with VXLAN BGP-EVPN
Building DataCenter networks with VXLAN BGP-EVPN
 
NETCONF YANG tutorial
NETCONF YANG tutorialNETCONF YANG tutorial
NETCONF YANG tutorial
 
Mikrotik Bridge Deep Dive
Mikrotik Bridge Deep DiveMikrotik Bridge Deep Dive
Mikrotik Bridge Deep Dive
 
Ethernet VPN (EVPN) EVerything Provider Needs
Ethernet VPN (EVPN) EVerything Provider NeedsEthernet VPN (EVPN) EVerything Provider Needs
Ethernet VPN (EVPN) EVerything Provider Needs
 
Secured Internet Gateway for ISP with pfsense & FRR
Secured Internet Gateway for ISP with pfsense & FRRSecured Internet Gateway for ISP with pfsense & FRR
Secured Internet Gateway for ISP with pfsense & FRR
 
Meraki vs. Viptela: Which Cisco SD-WAN Solution Is Right for You?
Meraki vs. Viptela: Which Cisco SD-WAN Solution Is Right for You?Meraki vs. Viptela: Which Cisco SD-WAN Solution Is Right for You?
Meraki vs. Viptela: Which Cisco SD-WAN Solution Is Right for You?
 
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain. What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
 
802.11r Explained.
802.11r Explained. 802.11r Explained.
802.11r Explained.
 
Ether channel fundamentals
Ether channel fundamentalsEther channel fundamentals
Ether channel fundamentals
 
Juniper mpls best practice part 1
Juniper mpls best practice   part 1Juniper mpls best practice   part 1
Juniper mpls best practice part 1
 

Similar to L2TP 101 ON-RAMP TO CONSUMING WHOLESALE BROADBAND SERVICES

Mastering your home network - Do It Yourself
Mastering your home network - Do It YourselfMastering your home network - Do It Yourself
Mastering your home network - Do It Yourselfjulien pauli
 
Ubuntu server wireless access point (eng)
Ubuntu server wireless access point (eng)Ubuntu server wireless access point (eng)
Ubuntu server wireless access point (eng)Anatoliy Okhotnikov
 
Webinar ethernet basics part a v1.3
Webinar ethernet basics part a v1.3Webinar ethernet basics part a v1.3
Webinar ethernet basics part a v1.3wilbertl
 
FEGTS IP training - TCP/IP Introduction
FEGTS IP training - TCP/IP IntroductionFEGTS IP training - TCP/IP Introduction
FEGTS IP training - TCP/IP IntroductionKae Hsu
 
information technology
information technologyinformation technology
information technologyNavneet kaur
 
information technology
information technologyinformation technology
information technologyNavneet kaur
 
SDN/OpenFlow #lspe
SDN/OpenFlow #lspeSDN/OpenFlow #lspe
SDN/OpenFlow #lspeChris Westin
 
MikroTik & RouterOS
MikroTik & RouterOSMikroTik & RouterOS
MikroTik & RouterOSFaelix Ltd
 
Local Area Network – Wired LAN
Local Area Network – Wired LANLocal Area Network – Wired LAN
Local Area Network – Wired LANRaj vardhan
 
14 network tools
14 network tools14 network tools
14 network toolsShay Cohen
 
cisco-xenpak-10gb-lr+-datasheet.pdf
cisco-xenpak-10gb-lr+-datasheet.pdfcisco-xenpak-10gb-lr+-datasheet.pdf
cisco-xenpak-10gb-lr+-datasheet.pdfHi-Network.com
 
Data centre networking at London School of Economics and Political Science - ...
Data centre networking at London School of Economics and Political Science - ...Data centre networking at London School of Economics and Political Science - ...
Data centre networking at London School of Economics and Political Science - ...Jisc
 
Aspects Stratégiques des Réseaux
Aspects Stratégiques des RéseauxAspects Stratégiques des Réseaux
Aspects Stratégiques des RéseauxEric Vyncke
 
1. Networking Fundamentals.pptx
1. Networking Fundamentals.pptx1. Networking Fundamentals.pptx
1. Networking Fundamentals.pptxMiguel Prado
 
HowTheInternetWorks.ppt
HowTheInternetWorks.pptHowTheInternetWorks.ppt
HowTheInternetWorks.pptPrakhar Pandey
 

Similar to L2TP 101 ON-RAMP TO CONSUMING WHOLESALE BROADBAND SERVICES (20)

Mastering your home network - Do It Yourself
Mastering your home network - Do It YourselfMastering your home network - Do It Yourself
Mastering your home network - Do It Yourself
 
Ubuntu server wireless access point (eng)
Ubuntu server wireless access point (eng)Ubuntu server wireless access point (eng)
Ubuntu server wireless access point (eng)
 
Webinar ethernet basics part a v1.3
Webinar ethernet basics part a v1.3Webinar ethernet basics part a v1.3
Webinar ethernet basics part a v1.3
 
FEGTS IP training - TCP/IP Introduction
FEGTS IP training - TCP/IP IntroductionFEGTS IP training - TCP/IP Introduction
FEGTS IP training - TCP/IP Introduction
 
VOIP QOS
VOIP QOSVOIP QOS
VOIP QOS
 
information technology
information technologyinformation technology
information technology
 
information technology
information technologyinformation technology
information technology
 
SDN/OpenFlow #lspe
SDN/OpenFlow #lspeSDN/OpenFlow #lspe
SDN/OpenFlow #lspe
 
Vpls
VplsVpls
Vpls
 
MikroTik & RouterOS
MikroTik & RouterOSMikroTik & RouterOS
MikroTik & RouterOS
 
Networking
NetworkingNetworking
Networking
 
Hardware8
Hardware8Hardware8
Hardware8
 
Local Area Network – Wired LAN
Local Area Network – Wired LANLocal Area Network – Wired LAN
Local Area Network – Wired LAN
 
14 network tools
14 network tools14 network tools
14 network tools
 
cisco-xenpak-10gb-lr+-datasheet.pdf
cisco-xenpak-10gb-lr+-datasheet.pdfcisco-xenpak-10gb-lr+-datasheet.pdf
cisco-xenpak-10gb-lr+-datasheet.pdf
 
Data centre networking at London School of Economics and Political Science - ...
Data centre networking at London School of Economics and Political Science - ...Data centre networking at London School of Economics and Political Science - ...
Data centre networking at London School of Economics and Political Science - ...
 
Aspects Stratégiques des Réseaux
Aspects Stratégiques des RéseauxAspects Stratégiques des Réseaux
Aspects Stratégiques des Réseaux
 
Lecture No. 1.ppt
Lecture No. 1.pptLecture No. 1.ppt
Lecture No. 1.ppt
 
1. Networking Fundamentals.pptx
1. Networking Fundamentals.pptx1. Networking Fundamentals.pptx
1. Networking Fundamentals.pptx
 
HowTheInternetWorks.ppt
HowTheInternetWorks.pptHowTheInternetWorks.ppt
HowTheInternetWorks.ppt
 

More from Faelix Ltd

Net mcr 2021 05 handout
Net mcr 2021 05 handoutNet mcr 2021 05 handout
Net mcr 2021 05 handoutFaelix Ltd
 
VYOS & RPKI at the BGP as edge
VYOS & RPKI at the BGP as edgeVYOS & RPKI at the BGP as edge
VYOS & RPKI at the BGP as edgeFaelix Ltd
 
Things I wish I had known about IPv6 before I started
Things I wish I had known about IPv6 before I startedThings I wish I had known about IPv6 before I started
Things I wish I had known about IPv6 before I startedFaelix Ltd
 
Bastion jump hosts with Teleport
Bastion jump hosts with TeleportBastion jump hosts with Teleport
Bastion jump hosts with TeleportFaelix Ltd
 
How we found a firewall vendor bug using Teleport as a bastion jump host
How we found a firewall vendor bug using Teleport as a bastion jump hostHow we found a firewall vendor bug using Teleport as a bastion jump host
How we found a firewall vendor bug using Teleport as a bastion jump hostFaelix Ltd
 
The Story of CVE-2018-19299 - finding and reporting bugs in Mikrotik RouterOS v6
The Story of CVE-2018-19299 - finding and reporting bugs in Mikrotik RouterOS v6The Story of CVE-2018-19299 - finding and reporting bugs in Mikrotik RouterOS v6
The Story of CVE-2018-19299 - finding and reporting bugs in Mikrotik RouterOS v6Faelix Ltd
 
Keeping your rack cool with one "/IP route rule"
Keeping your rack cool with one "/IP route rule"Keeping your rack cool with one "/IP route rule"
Keeping your rack cool with one "/IP route rule"Faelix Ltd
 
SDN, CMDB, NMS ...CRM! How we're putting the customer at the centre of our ne...
SDN, CMDB, NMS ...CRM! How we're putting the customer at the centre of our ne...SDN, CMDB, NMS ...CRM! How we're putting the customer at the centre of our ne...
SDN, CMDB, NMS ...CRM! How we're putting the customer at the centre of our ne...Faelix Ltd
 

More from Faelix Ltd (8)

Net mcr 2021 05 handout
Net mcr 2021 05 handoutNet mcr 2021 05 handout
Net mcr 2021 05 handout
 
VYOS & RPKI at the BGP as edge
VYOS & RPKI at the BGP as edgeVYOS & RPKI at the BGP as edge
VYOS & RPKI at the BGP as edge
 
Things I wish I had known about IPv6 before I started
Things I wish I had known about IPv6 before I startedThings I wish I had known about IPv6 before I started
Things I wish I had known about IPv6 before I started
 
Bastion jump hosts with Teleport
Bastion jump hosts with TeleportBastion jump hosts with Teleport
Bastion jump hosts with Teleport
 
How we found a firewall vendor bug using Teleport as a bastion jump host
How we found a firewall vendor bug using Teleport as a bastion jump hostHow we found a firewall vendor bug using Teleport as a bastion jump host
How we found a firewall vendor bug using Teleport as a bastion jump host
 
The Story of CVE-2018-19299 - finding and reporting bugs in Mikrotik RouterOS v6
The Story of CVE-2018-19299 - finding and reporting bugs in Mikrotik RouterOS v6The Story of CVE-2018-19299 - finding and reporting bugs in Mikrotik RouterOS v6
The Story of CVE-2018-19299 - finding and reporting bugs in Mikrotik RouterOS v6
 
Keeping your rack cool with one "/IP route rule"
Keeping your rack cool with one "/IP route rule"Keeping your rack cool with one "/IP route rule"
Keeping your rack cool with one "/IP route rule"
 
SDN, CMDB, NMS ...CRM! How we're putting the customer at the centre of our ne...
SDN, CMDB, NMS ...CRM! How we're putting the customer at the centre of our ne...SDN, CMDB, NMS ...CRM! How we're putting the customer at the centre of our ne...
SDN, CMDB, NMS ...CRM! How we're putting the customer at the centre of our ne...
 

Recently uploaded

『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书rnrncn29
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxNIMMANAGANTI RAMAKRISHNA
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predieusebiomeyer
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书zdzoqco
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书rnrncn29
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxMario
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119APNIC
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxAndrieCagasanAkio
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxDyna Gilbert
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxmibuzondetrabajo
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa494f574xmv
 

Recently uploaded (11)

『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptx
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predi
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptx
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptx
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptx
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptx
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa
 

L2TP 101 ON-RAMP TO CONSUMING WHOLESALE BROADBAND SERVICES