Last active
February 15, 2021 23:50
-
-
Save njh/ab3282f43c72dcf6932b3693eb7dfca4 to your computer and use it in GitHub Desktop.
Attempting to get 'server' pppd to give IPv6 interface identifier to 'client' pppd - version 2.4.7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| nodetach | |
| noauth | |
| debug | |
| persist | |
| local | |
| noip | |
| +ipv6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo pppd file ~/ppp-options-mini ipv6cp-accept-local /dev/ttyAMA0 115200 | |
| using channel 319 | |
| Using interface ppp0 | |
| Connect: ppp0 <--> /dev/ttyAMA0 | |
| sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x73c13969> <pcomp> <accomp>] | |
| rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <magic 0x73c13969> <pcomp> <accomp>] | |
| rcvd [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x671e5d48> <pcomp> <accomp>] | |
| sent [LCP ConfAck id=0x1 <asyncmap 0x0> <magic 0x671e5d48> <pcomp> <accomp>] | |
| sent [LCP EchoReq id=0x0 magic=0x73c13969] | |
| sent [CCP ConfReq id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>] | |
| sent [IPV6CP ConfReq id=0x1 <addr fe80::dc33:8922:0481:16cc>] | |
| rcvd [LCP EchoReq id=0x0 magic=0x671e5d48] | |
| sent [LCP EchoRep id=0x0 magic=0x73c13969] | |
| rcvd [LCP EchoRep id=0x0 magic=0x671e5d48] | |
| rcvd [CCP ConfReq id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>] | |
| sent [CCP ConfAck id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>] | |
| rcvd [IPV6CP ConfReq id=0x1 <addr fe80::0000:0000:0000:0001>] | |
| sent [IPV6CP ConfAck id=0x1 <addr fe80::0000:0000:0000:0001>] | |
| rcvd [CCP ConfAck id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>] | |
| Deflate (15) compression enabled | |
| rcvd [IPV6CP ConfAck id=0x1 <addr fe80::dc33:8922:0481:16cc>] | |
| local LL address fe80::dc33:8922:0481:16cc | |
| remote LL address fe80::0000:0000:0000:0001 | |
| Script /etc/ppp/ipv6-up started (pid 25757) | |
| Script /etc/ppp/ipv6-up finished (pid 25757), status = 0x0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo pppd file ./ppp-options-mini ipv6 ::1,::2 /dev/ttyAMA0 115200 | |
| using channel 368 | |
| Using interface ppp0 | |
| Connect: ppp0 <--> /dev/ttyAMA0 | |
| sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x671e5d48> <pcomp> <accomp>] | |
| rcvd [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x73c13969> <pcomp> <accomp>] | |
| sent [LCP ConfAck id=0x1 <asyncmap 0x0> <magic 0x73c13969> <pcomp> <accomp>] | |
| sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x671e5d48> <pcomp> <accomp>] | |
| rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <magic 0x671e5d48> <pcomp> <accomp>] | |
| sent [LCP EchoReq id=0x0 magic=0x671e5d48] | |
| sent [CCP ConfReq id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>] | |
| sent [IPV6CP ConfReq id=0x1 <addr fe80::0000:0000:0000:0001>] | |
| rcvd [LCP EchoReq id=0x0 magic=0x73c13969] | |
| sent [LCP EchoRep id=0x0 magic=0x671e5d48] | |
| rcvd [CCP ConfReq id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>] | |
| sent [CCP ConfAck id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>] | |
| rcvd [IPV6CP ConfReq id=0x1 <addr fe80::dc33:8922:0481:16cc>] | |
| sent [IPV6CP ConfAck id=0x1 <addr fe80::dc33:8922:0481:16cc>] | |
| rcvd [LCP EchoRep id=0x0 magic=0x73c13969] | |
| rcvd [CCP ConfAck id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>] | |
| Deflate (15) compression enabled | |
| rcvd [IPV6CP ConfAck id=0x1 <addr fe80::0000:0000:0000:0001>] | |
| local LL address fe80::0000:0000:0000:0001 | |
| remote LL address fe80::dc33:8922:0481:16cc | |
| Script /etc/ppp/ipv6-up started (pid 21859) | |
| Script /etc/ppp/ipv6-up finished (pid 21859), status = 0x0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment