.. vim: noexpandtab fileencoding=utf-8 nomodified wrap textwidth=270 foldmethod=marker foldmarker={{{,}}} foldcolumn=4 ruler showcmd lcs=tab\:|- list tabstop=8 noexpandtab nosmarttab softtabstop=0 shiftwidth=0 :date: 2025.02.28 18:45:33 :_modified: 1970.01.01 00:00:00 :tags: HW,HowTo :authors: Gilhad :summary: sit - nastaveni :title: sit - nastaveni :nice_title: |logo| %title% |logo| %HEADER% sit - nastaveni -------------------------------------------------------------------------------- Zjištění aktuální rychlosti síťové karty .. code:: ethtool eth0 ... Speed: 1000Mb/s ... Změna rychlosti síťové karty .. code:: sudo ethtool -s eth0 speed 1000 duplex full autoneg off Tento příkaz nastaví rychlost na 1000 Mb/s, full duplex a vypne automatické vyjednávání. * `speed 1000`: Nastaví rychlost na 1000 Mb/s. * `duplex full`: Nastaví duplex na full. * `autoneg off`: Vypne automatické vyjednávání rychlosti a duplexu. Pokud chcete, aby to bylo automatické, použijte autoneg on.