proto-shell: add support for appending configuration data over multiple update_link...
[project/netifd.git] / dummy / proto / ppp.sh
1 #!/bin/sh
2
3 . ../netifd-proto.sh
4 init_proto "$@"
5
6 ppp_generic_init_config() {
7 proto_config_add_string "username"
8 proto_config_add_string "password"
9 proto_config_add_int "keepalive"
10 }
11
12 proto_ppp_init_config() {
13 no_device=1
14 available=1
15 ppp_generic_init_config
16 }
17
18 proto_ppp_setup() {
19 echo "ppp_setup($1): $2"
20 }
21
22 proto_ppp_teardown() {
23 return
24 }
25
26 add_protocol ppp
27
28 proto_pppoe_init_config() {
29 ppp_generic_init_config
30 }
31
32 proto_pppoe_setup() {
33 local interface="$1"
34 local device="$2"
35
36 json_get_var username username
37 json_get_var password password
38 echo "pppoe_setup($interface, $device), username=$username, password=$password"
39 proto_init_update ppp0 1
40 proto_set_keep 1
41 proto_add_ipv4_address "192.168.2.1" 32
42 proto_add_dns_server "192.168.2.2"
43 proto_add_ipv4_route "0.0.0.0" 0 192.168.2.2
44 proto_add_data
45 json_add_string "ppp-type" "pppoe"
46 proto_close_data
47 proto_send_update "$interface"
48
49 proto_init_update ppp0 1
50 proto_set_keep 1
51 proto_add_ipv6_address "fe80::2" 64
52 proto_add_ipv6_route "::0" 0 "fe80::1"
53 proto_add_data
54 json_add_string "ppp-type" "pppoe"
55 proto_close_data
56 proto_send_update "$interface"
57
58 proto_run_command "$interface" sleep 30
59 }
60
61 proto_pppoe_teardown() {
62 [ "$ERROR" = 9 ] && {
63 proto_notify_error "$interface" PROCESS_KILLED
64 proto_block_restart "$interface"
65 }
66 proto_kill_command "$interface"
67 return
68 }
69
70 add_protocol pppoe