US Trends

a network administrator configures a static route on the edge router of a network to assign a gateway of last resort. how would a network administrator configure the edge router to automatically share this route within rip?

Use the default-information originate command under the RIP routing process to automatically advertise the static default route.

In other words, after configuring the static default route (gateway of last resort) such as:

text

ip route 0.0.0.0 0.0.0.0 <next-hop-ip>

you would enable RIP and add:

text

router rip
 default-information originate

This instructs the edge router to originate and share that static default route with all RIP neighbors automatically.

Key idea in one line

The edge router must be told to *originate* its static default route into RIP, which is exactly what `default-information originate` does.[7]
Information gathered from public forums or data available on the internet and portrayed here.