diff --git a/docs/crxnv6.md b/docs/crxnv6.md index 68045bc..1c18bbd 100644 --- a/docs/crxnv6.md +++ b/docs/crxnv6.md @@ -29,9 +29,17 @@ You can register a prefix here and find a list of all prefixes [here](https://cr If you recall the `on up` part to your fastd configuration then you can put this code in there if you want. A systemd unit will do as well. ``` -ip addr add / proto static dev +ip route add / proto static dev ``` You can make `` the interface the subnet belongs to, for example, `eth0`, if you intend to have your IPs within your subnet accessed from your router over the LAN it is conneted to on `eth0`. -This above code should add a route for you AND assign the IP to the given interface. +## Step 5: Add an address + +Set the address for your node with the following: + +``` +ip addr add
/ dev +``` + +The `` can be anything.