mirror of
https://github.com/markqvist/tncattach.git
synced 2024-11-15 16:42:10 -05:00
Raspbian MTU setting description in readme
This commit is contained in:
parent
8a70eedfc5
commit
346b36e954
11
README.md
11
README.md
@ -111,12 +111,13 @@ tnc0: flags=4305<UP,POINTOPOINT,RUNNING,NOARP,MULTICAST> mtu 400
|
|||||||
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
|
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
|
||||||
|
|
||||||
```
|
```
|
||||||
## Known Issues
|
## Worth Knowing on Raspbian
|
||||||
|
|
||||||
The utility fails to set the interface MTU on some Raspbian versions. After attaching the TNC, check that the correct MTU has been set on the interface with ifconfig or similar. If not, you can set it manually with a command like:
|
On some versions of Raspbian (and probably other operating systems), the DHCP client daemon _dhcpcd_ interferes with TNC interfaces, by overriding their MTU and trying to auto-configure link-local addresses. You probably don't want this, and it can be disabled by editing the __/etc/dhcpcd.conf__ file, adding a statement telling _dhcpcd_ to ignore your TNC interface:
|
||||||
|
|
||||||
```sh
|
```
|
||||||
# Attach interface
|
# Add the following statement somewhere at the beginning
|
||||||
ifconfig tnc0 mtu 478
|
# of /etc/dhcpcd.conf to prevent dhcpcd from changing MTU
|
||||||
|
|
||||||
|
denyinterfaces tnc0
|
||||||
```
|
```
|
Loading…
Reference in New Issue
Block a user