From 47a63edf9186b3ad95949efa2b799183896ef381 Mon Sep 17 00:00:00 2001 From: Nicolas MASSE Date: Fri, 30 Jul 2021 11:41:03 +0200 Subject: [PATCH] doc --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..074f285 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# Patched dhclient for the Orange Fibre ISP + +## Why ? + +The Orange Fibre ISP in France needs DHCP packets to be sent with 802.1Q priority set to "6". +The only way to accomplish this is by patching dhclient. + +## How ? + +On a CentOS Stream 8 server that is connected to the ONT, enable this repo. + +```sh +sudo curl -o https://f003.backblazeb2.com/file/dhclient-orange/dhclient-orange.repo /etc/yum.repos.d/dhclient-orange.repo +``` + +And install the patched dhclient. + +```sh +sudo dnf remove dhcp-client +sudo dnf install dhcp-client-orange-isp +``` + +Configure the connection with NetworkManager. + +```sh +sudo nmcli con add type vlan con-name eno1.832 dev eno1 id 832 egress "0:0,1:0,2:0,3:0,4:0,5:0,6:6,7:0" +``` +