I had a policy importing only Public Interface direct/locals into RIB group so that default-route could resolve next-hop but I have removed it. Still no 0/0 route.
interface-routes {
rib-group inet LocalISP;
}
static {
route 0.0.0.0/0 next-hop 7.91.187.65;
}
}
rib-groups {
LocalISP {
import-rib [ inet.0 GuestWiFi.inet.0 ];
My goal is to let Guest users go to the local internet directly. Router default-instance has it's default-route pointing internally to a local next-hop. How else can I achive this?
Thanks.