Netzwerkconfigs beim Hochfahren

harry1983

Member
Feb 17, 2022
89
15
13
41
Grüss euch

Ich würde gerne die folgenden Configs welche ich aktuell nach jedem Hochfahren in die Konsole eingebe automatisch machen lassen:

Code:
ethtool -s eno1 speed 1000 duplex full autoneg off

Ich nehme an ich trage das unter /etc/network/interface ein, aber vielleicht könnte mir jemand sagen wie?

Mein aktuelles Interface sieht aktuell so aus:

Code:
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage parts of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!

auto lo
iface lo inet loopback

iface eno1 inet manual

auto enp1s0
iface enp1s0 inet manual
    mtu 9000
#Mellanox SFP1+

auto vmbr0
iface vmbr0 inet static
    address 192.168.0.200/24
    gateway 192.168.0.1
    bridge-ports eno1
    bridge-stp off
    bridge-fd 0

auto vmbr2
iface vmbr2 inet manual
    bridge-ports none
    bridge-stp off
    bridge-fd 0

auto vmbr1
iface vmbr1 inet manual
    bridge-ports enp1s0
    bridge-stp off
    bridge-fd 0

Wäre super wenn ihr mir hier eine Lösung geben könntet.
Danke vorab

lg Harry
 
Ich habe mich auf folgende Zeile bezogen up sleep 5; ethtool -s eth0 ..., also bei der bridge config folgendes hinzufügen
Code:
up sleep 5; ethtool -s eno1 speed 1000 duplex full autoneg off

D.h., nach dem up der vmbr0 wird 5 Sekunden gewartet und nachher das ethtool Kommando ausgeführt
 
Last edited:
Ich habe mich auf folgende Zeile bezogen up sleep 5; ethtool -s eth0 ..., also bei der bridge config folgendes hinzufügen
Code:
up sleep 5; ethtool -s eno1 speed 1000 duplex full autoneg off

D.h., nach dem up der vmbr0 wird 5 Sekunden gewartet und nachher das ethtool Kommando ausgeführt

Du meinst hier:

Code:
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage parts of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!

auto lo
iface lo inet loopback

iface eno1 inet manual

auto enp1s0
iface enp1s0 inet manual
    mtu 9000
#Mellanox SFP1+

auto vmbr0
iface vmbr0 inet static
    address 192.168.0.200/24
    gateway 192.168.0.1
    bridge-ports eno1
    bridge-stp off
    bridge-fd 0
    up sleep 5; ethtool -s eno1 speed 1000 duplex full autoneg off

auto vmbr2
iface vmbr2 inet manual
    bridge-ports none
    bridge-stp off
    bridge-fd 0

auto vmbr1
iface vmbr1 inet manual
    bridge-ports enp1s0
    bridge-stp off
    bridge-fd 0

Wusste nicht das ethtool in der Config von der Bridge auch funktioniert. Danke für den Tipp :)
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!