Page MenuHomeDevCentral

Reconfigure packet forwarding for router-001
ClosedPublic

Authored by dereckson on Jan 26 2023, 17:24.
Tags
None
Referenced Files
F11668081: D2757.id.diff
Mon, Sep 8, 06:49
F11663895: D2757.diff
Sun, Sep 7, 13:57
Unknown Object (File)
Sun, Sep 7, 09:41
Unknown Object (File)
Wed, Sep 3, 00:39
Unknown Object (File)
Tue, Sep 2, 01:42
Unknown Object (File)
Mon, Sep 1, 20:30
Unknown Object (File)
Mon, Sep 1, 07:39
Unknown Object (File)
Sat, Aug 30, 12:55
Subscribers
None

Details

Summary

On reboot, the routing service overwrites net.inet.ip.forwarding, so the value
in /etc/sysctl.conf isn't relevant.

Here the relevant code from /etc/rc.d/routing on FreeBSD 13.1p5:

if checkyesno gateway_enable; then
    ropts_init inet
    echo -n ' gateway=YES'
    ${SYSCTL} net.inet.ip.forwarding=1 > /dev/null
else
    ${SYSCTL} net.inet.ip.forwarding=0 > /dev/null
fi

So, as documented in the handbook, the expected configuration
is by setting the gateway_enable variable.

This change partially reverts 6deb32e01378 / D2596.

Test Plan

/etc/rc.d/routing restart

Diff Detail

Repository
rOPS Nasqueron Operations
Lint
Lint Passed
Unit
No Test Coverage
Branch
router-rc
Build Status
Buildable 4361
Build 4628: arc lint + arc unit

Event Timeline

dereckson created this revision.
This revision is now accepted and ready to land.Jan 26 2023, 17:25