From 454bc932d1eedf918939225e5e7b7f382234d9e2 Mon Sep 17 00:00:00 2001 From: 0xC0ncord Date: Thu, 20 Feb 2020 18:19:40 -0500 Subject: [PATCH 1/2] Fix markdown error in U-VERSE_TV.md --- U-VERSE_TV.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/U-VERSE_TV.md b/U-VERSE_TV.md index eff619d..653262e 100644 --- a/U-VERSE_TV.md +++ b/U-VERSE_TV.md @@ -48,7 +48,7 @@ Since we will be plugging the DVR more or less directly into your pfSense box, y 2. Configure the UVerseDVR interface. 1. On pfSense, navigate to _Interfaces > Interface Assignments_ 2. Under **Available network ports** find and add the interface you connected your DVR to. Take note of the name it is added as. - 3. Navigate to the interface's configuration by going to _Interfaces > _ + 3. Navigate to the interface's configuration by going to _Interfaces > (Newly created interface)_ 4. Change the interface's description to something more meaningful. I chose `UverseDVR` 5. Ensure that **Enable** is checked. 6. Set your pfSense's static IPv4 address for this new interface under **Static IPv4 Configuration**. This should be an RFC 1918 address that is not already in use on any other LAN in your network. You should also keep the size of the network relatively small. I chose `10.5.5.1/29`. -- 2.45.2 From 5192ce7473902168e7958d19e14e11668373620a Mon Sep 17 00:00:00 2001 From: Drew Mullen Date: Mon, 13 Apr 2020 06:42:06 -0400 Subject: [PATCH 2/2] activate netgraph modules on opnsense 2.1+ --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 5da3692..449195f 100644 --- a/README.md +++ b/README.md @@ -315,6 +315,17 @@ follow the pfSense instructions, EXCEPT: 3) put the pfatt.sh script into `/usr/local/etc/rc.syshook.d/early` as `99-pfatt.sh` 4) do *NOT* modify config.xml, nor do any of the duid stuff 5) note: You *CAN* use IPv6 Prefix id 0, as OPNSense does *NOT* assign a routeable IPv6 address to ngeth0 +6) **For OPNSense 20.1 Only:** OPNSense no longer loads the netgraph kernel modules by default. To load them, run this command and restart your device. +```bash +cat << EOF > /boot/loader.conf.local +netgraph_load="YES" +ng_ether_load="YES" +ng_eiface_load="YES" +ng_one2many_load="YES" +ng_vlan_load="YES" +ng_etf_load="YES" +EOF +``` I haven't tried this with native FreeBSD, but I imagine the process is ultimately the same with netgraph. Feel free to submit a PR with notes on your experience. -- 2.45.2