Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • all people connected within 192.168.128.0/17
  • to access the external world.

First step, let's:

  • create an interface Loopback0 within 192.168.128.0/17, let's say 192.168.254.1/32
  • and try to ping 8.8.8.8

Article objective

In this article we will pursue the SOHO network appliance installation and enable IPv4 connectivity for all host connected within your internal network to the external world.

Diagrams

[

...

#004 ] -

...

 Do you need translation ? 

Expand
titleCreate router loopback in VRF inet

First step, let's create an interface Loopback0 within 192.168.128.0/17, let's say 192.168.254.1/32

Code Block
languagebash
themeMidnight
titleSOHO router in VRF inet
sh run loopback0                                                        
interface loopback0
 no description
 vrf forwarding inet
 ipv4 address 192.168.254.1 255.255.255.255
 no shutdown
 no log-link-change
 exit
!


...

Tip
titleRARE validated design: [ SOHO #004 ] - key take-away

In this example we are proposing a basic connectivity scenario. However, keep in mind that depending on your location the configuration might be drastically different. But do not fear ! RARE/freeRouter has all the features need to enable connectivity !

  • NAT64 is available. So in case you want to run a pure IPv6 network, freeRouter can NAT64 traffif traffic for you.
  • NAT46 is also available. In case you are desperate and don't want to implement a pure IPv6 home network and have an ISP running only IPv6, freeRouter can NAT46 your traffic for you !
  • In the example described, we are lucky to have IPv6 public global IPv6 address. We will see IPv6 configuration in subsequent articles.

...