Gentoo Archives: gentoo-user

From: Grant <emailgrant@×××××.com>
To: Gentoo mailing list <gentoo-user@l.g.o>
Subject: [gentoo-user] PPPoE config
Date: Wed, 21 Sep 2016 16:19:39
Message-Id: CAN0CFw2irZApYXPDf6gq-ogafgNF4Vt+ieYm+9mDo7Xax0ZL6w@mail.gmail.com
1 I just started using PPPoE on Gentoo for the first time. Could my
2 config be improved?
3
4 config_net0="4.3.2.1/24"
5 config_net1="1.2.3.4/24"
6 config_ppp0="ppp"
7 link_ppp0="net0"
8 plugins_ppp0="pppoe"
9 username_ppp0="user"
10 password_ppp0="pass"
11 pppd_ppp0="
12 defaultroute
13 child-timeout 60
14 "
15
16 Starting net.ppp0 could be a little cleaner:
17
18 # /etc/init.d/net.ppp0 restart
19 * /etc/init.d/net.ppp0 uses runscript, please convert to openrc-run.
20 * Caching service dependencies ... [ ok ]
21 * Stopping unbound ... [ ok ]
22 * Unmounting network filesystems ... [ ok ]
23 * Bringing down interface ppp0
24 * Stopping pppd on ppp0 [ ok ]
25 * Bringing up interface ppp0
26 * Starting pppd in ppp0 ... [ ok ]
27 * Backgrounding ...
28 * WARNING: net.ppp0 has started, but is inactive
29 * WARNING: netmount will start when net.ppp0 has started
30 * WARNING: unbound will start when net.ppp0 has started
31
32 - Grant