Advertisement
Guest User

IPv6 Config Unifi

a guest
Apr 20th, 2025
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.47 KB | None | 0 0
  1. {
  2.    "interfaces":{
  3.       "ethernet":{
  4.          "eth1":{ #LAN interface
  5.             "address":[
  6.                "fd00::1/64", #You can choose any prefix you want here, as long as it starts with "fd"
  7.                "192.168.0.1/24" #Put what your IPv4 network is in here if you want to use dual-stack
  8.             ],
  9.             "ipv6":{
  10.                "router-advert":{
  11.                   "prefix":{
  12.                      "fd00::/64":{
  13.                         "autonomous-flag":"true",
  14.                         "on-link-flag":"true",
  15.                         "preferred-lifetime":"14400",
  16.                         "valid-lifetime":"86400"
  17.                      }
  18.                   }
  19.                }
  20.             }
  21.          }
  22.       }
  23.    },
  24.  
  25.    "firewall":{
  26.            "ipv6-name":{
  27.                    "WANv6_IN":{
  28.                            "rule":{
  29.                                    "2000":{
  30.                                            "action": "accept",
  31.                                            "description": "Alfa V6 In",
  32.                                            "destination":{
  33.                                                     #Replace below first 64 bits with your own EUI-64
  34.                                                    "address": "::c707:1aff:fe53:9bad/::ffff:ffff:ffff:ffff"
  35.                                            },
  36.                                            "protocol": "all"
  37.                                    }
  38.                            }
  39.                    }
  40.            }
  41.    }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement