@@ -292,7 +292,7 @@ and a `tun` interface. To get started, you need to follow a few steps:
292292 socat -v PIPE udp-recvfrom:5553,fork
293293 ```
294294
295- 2 . SSH into tuns requesting a `tun` interface with the information of where the
295+ 1 . SSH into tuns requesting a `tun` interface with the information of where the
296296 service is running. This needs to be done as root. Replace
297297 `local-ip-of-machines-main-interface` with the ip address of the main
298298 interface for proper routing.
@@ -302,14 +302,14 @@ and a `tun` interface. To get started, you need to follow a few steps:
302302 udp-forward=10000:local-ip-of-machines-main-interface:5553
303303 ```
304304
305- 3 . Bring the tunnel interface up and assign an ip that is link local (also as
305+ 1 . Bring the tunnel interface up and assign an ip that is link local (also as
306306 root):
307307
308308 ```bash
309309 ip link set tun0 up; ip r a 10.1.0.1 dev tun0
310310 ```
311311
312- 4 . Start a udp client to tuns.sh:10000. Here' s one with netcat:
312+ 1 . Start a udp client to tuns.sh:10000. Here' s one with netcat:
313313
314314 ` ` ` bash
315315 nc -u tuns.sh 10000
@@ -330,7 +330,7 @@ make this work! The `SRC` interface `MAC` is `00:00:00:00:00:01`, while the
330330 socat -v PIPE udp-recvfrom:5553,fork
331331 ` ` `
332332
333- 2 . SSH into tuns requesting a ` tap` interface with the information of where the
333+ 1 . SSH into tuns requesting a ` tap` interface with the information of where the
334334 service is running. This needs to be done as root. Replace
335335 ` local-ip-of-machines-main-interface` with the ip address of the main
336336 interface for proper routing.
@@ -340,7 +340,7 @@ make this work! The `SRC` interface `MAC` is `00:00:00:00:00:01`, while the
340340 udp-forward=10000:local-ip-of-machines-main-interface:5553
341341 ` ` `
342342
343- 3 . Bring the tunnel interface up and assign an ip that is link local (also as
343+ 1 . Bring the tunnel interface up and assign an ip that is link local (also as
344344 root). You need to set the ARP entry and interface ` MAC` as well:
345345
346346 ` ` ` bash
@@ -350,7 +350,7 @@ make this work! The `SRC` interface `MAC` is `00:00:00:00:00:01`, while the
350350 ip neigh add 10.1.0.1 lladdr 00:00:00:00:00:01 dev tap0 nud permanent
351351 ` ` `
352352
353- 4 . Start a udp client to tuns.sh:10000. Here' s one with netcat:
353+ 1 . Start a udp client to tuns.sh:10000. Here' s one with netcat:
354354
355355 ```bash
356356 nc -u tuns.sh 10000
0 commit comments