Force X550 Intel NIC to auto neg at 2500 due to a driver issue.
This commit is contained in:
parent
ce115a6a55
commit
d348c2e24f
2 changed files with 7 additions and 2 deletions
|
@ -240,6 +240,10 @@ set firewall name lan-local rule 4 action 'accept'
|
|||
set firewall name lan-local rule 4 description 'Rule: accept_node_speed_exporter'
|
||||
set firewall name lan-local rule 4 destination port '9798,9100'
|
||||
set firewall name lan-local rule 4 protocol 'tcp'
|
||||
set firewall name lan-local rule 5 action 'accept'
|
||||
set firewall name lan-local rule 5 description 'Rule: accept perfmon3'
|
||||
set firewall name lan-local rule 5 destination port '5201'
|
||||
set firewall name lan-local rule 5 protocol 'tcp'
|
||||
|
||||
# From LAN to SERVERS
|
||||
set firewall name lan-servers default-action 'drop'
|
||||
|
|
|
@ -13,7 +13,7 @@ tee /home/vyos/.gitconfig <<END >/dev/null
|
|||
email = joe@veri.dev
|
||||
name = Joseph Hanson
|
||||
END
|
||||
#
|
||||
# Add bash aliases for home directory
|
||||
tee -a /home/vyos/.bash_aliases <<END >/dev/null
|
||||
export SOPS_AGE_KEY_FILE=/config/secrets/age.key
|
||||
export GIT_SSH_COMMAND="ssh -i /config/secrets/id_ed25519"
|
||||
|
@ -21,4 +21,5 @@ export VISUAL=vi
|
|||
export EDITOR=vi
|
||||
alias podman="sudo podman"
|
||||
END
|
||||
#
|
||||
# Force X550 NIC to 2.5Gbps autonegotiation. Fixes a Intel driver issue.
|
||||
ethtool -s eth0 speed 2500 duplex full autoneg on
|
Reference in a new issue