mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
FRRouting is free software that implements and manages various IPv4 and IPv6 routing protocols. Currently FRRouting supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2, RIPng, IS-IS, PIM-SM/MSDP, LDP and Babel as well as very early support for EIGRP and NHRP. During PR review, fix for openrc-run issue discovered and fix contributed by Hidde Van der Heide. fixes #8795
20 lines
224 B
Plaintext
Executable File
20 lines
224 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="FRRouting"
|
|
|
|
start() {
|
|
/usr/lib/frr/frr start
|
|
}
|
|
|
|
stop() {
|
|
/usr/lib/frr/frr stop
|
|
}
|
|
|
|
restart() {
|
|
/usr/lib/frr/frr restart
|
|
}
|
|
|
|
status() {
|
|
/usr/lib/frr/frr status
|
|
}
|