hitazcl
Goto Top

Konfigurierte IP einer weiteren Netzwerkkarte mit 4 Ports wird über die Onboard Netzwerkkarte abgebildet

Hallo Leute,

ich habe hier ein Phänomen und finde einfach keine Lösung!

Habe mir in meinen Server zu der Onboard Netzwerkkarte noch eine 4 Port Netzwerkkarte gebaut.
Das Betriebssystem Ubuntu 14.04.3 LTS hat diese ohne weiteres erkannt.

Onboard: eth0 + eth1 (leider nur teaming-fähig)
4 Port Karte: eth2, eth3, eth4, eth5

Jetzt verpasse ich einer der neuen NICs (z.B. eth3) eine neue IP.
Lt. Konfiguration ist diese auch der richtigen Hardware-Adresse zugeordnet.

Es werden keine TCP/IP Pakete über diese neue NIC geschickt, sondern über die MAC von eth0!

Ist mein Kernel falsch konfiguriert? Ich verstehe das einfach nicht...

Hat jemand eine Idee?

Gruß

Content-Key: 285628

Url: https://administrator.de/contentid/285628

Printed on: April 24, 2024 at 06:04 o'clock

Member: Lochkartenstanzer
Lochkartenstanzer Oct 15, 2015 updated at 09:41:15 (UTC)
Goto Top
Zitat von @hitazcl:

Es werden keine TCP/IP Pakete über diese neue NIC geschickt, sondern über die MAC von eth0!

Ist mein Kernel falsch konfiguriert? Ich verstehe das einfach nicht...

Hat jemand eine Idee?

Moin,

Mein Verdacht: Deine Konfig ist so gebaut, daß einfach alle NICs ins gleiche Team gesteckt werden. face-smile
Schau Die die configfiles noch mal genauer an (z.B. /etc/network/interfaces u.a.).

lks
Member: michi1983
michi1983 Oct 15, 2015 at 09:50:04 (UTC)
Goto Top
Hallo,

was hast du denn an eth3 angesteckt?

Hilfreich wäre der output von
ifconfig -a
sowie von
cat /etc/network/interfaces

Desweiteren kannst du mit dem Wireshark oder tcpdump mal auf dem Interface horchen was da wirklich drüber geht.

Gruß
Member: hitazcl
hitazcl Oct 15, 2015 at 09:53:54 (UTC)
Goto Top
Also laut meiner Kenntnisse steht hier nichts davon, oder?

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo eth0 eth3
iface lo inet loopback

# The primary network interface
iface eth0 inet static
        address xxx.xxx.xxx.xxx
        netmask 255.255.0.0
        network xxx.xxx.0.0
        dns-nameservers xxx
        gateway xxx
        up ip route add xxx/32 via xxx
        dns-domain local.loc

iface eth1 inet manual


iface eth2 inet manual
        hwaddress ether xxx:50

iface eth3 inet static
        address yyy.yyy.yyy.yyy
        netmask 255.255.255.0
        network yyy.yyy.0.0
        hwaddress ether xxx:51

iface eth4 inet manual
        hwaddress ether xxx:52

iface eth5 inet manual
        hwaddress ether xxx:53
Member: michi1983
michi1983 Oct 15, 2015 updated at 10:00:52 (UTC)
Goto Top
Ich weiß nicht ob das Distributionsbezogen ist, aber mein lokales Netz funktioniert z.b. nicht ohne in der /etc/network/interfaces Datei die Broadcast Adresse broadcast anzugeben.

Und wie hast du überprüft ob etwas über das Interface läuft?
Member: Lochkartenstanzer
Lochkartenstanzer Oct 15, 2015 at 10:03:51 (UTC)
Goto Top
Und wie hast Du das Teaming/Bondig konfiguriert? Im BIOS oder im OS?

lks
Member: hitazcl
hitazcl Oct 15, 2015 at 10:22:21 (UTC)
Goto Top
Das ist nur im BIOS eingestellt...
Leider kann es dort nicht deaktiviert werden, Server Modell bedingt, daher habe ich nun mitunter diese weitere Netzwerkkarte verbaut!
Member: hitazcl
hitazcl Oct 15, 2015 at 10:26:28 (UTC)
Goto Top
Das Interface läuft...
Ein tcpdump zeigt nicht mehr als:
12:23:10.008036 LLDP, length 246: HP-O-006-043
12:23:12.965843 xxx:56:6d > xxx:13:a6, ethertype Unknown (0x88b7), length 60:
        0x0000:  0800 0900 0302 0013 0262 69a4 a01d 483e  .........bi...H>
        0x0010:  5640 ca45 fd24 7a72 f88a bb6e ca1d 7373  V@.E.$zr...n..ss
        0x0020:  66b6 0298 f0cc 0000 0000 0000 0000       f.............
...für eth3!

# ifconfig eth3
eth3      Link encap:Ethernet  HWaddr xxx:51
          inet addr:xxx  Bcast:xxx  Mask:255.255.255.0
          inet6 addr: xxxxxx/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:201 errors:0 dropped:0 overruns:0 frame:0
          TX packets:32 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:22060 (22.0 KB)  TX bytes:2592 (2.5 KB)
          Memory:c1d00000-c1d80000
Member: michi1983
michi1983 Oct 15, 2015 at 10:27:55 (UTC)
Goto Top
Hast du schon probiert DHCP auf dem eth3 Interface zu aktivieren und einen Client dran zu hängen?
Member: Lochkartenstanzer
Lochkartenstanzer Oct 15, 2015 at 10:28:44 (UTC)
Goto Top
Zitat von @hitazcl:

Das ist nur im BIOS eingestellt...
Leider kann es dort nicht deaktiviert werden, Server Modell bedingt, daher habe ich nun mitunter diese weitere Netzwerkkarte verbaut!

Was ist das denn für ein komischer Server, daß dem Admin nicht gestattet, selbst zu bestimmen, wie die NICs verwendet werden sollen?

Ich würde daher anfangen per tcpdump oder wireshark zu schauen was über die Leitung geht.

lks
Member: hitazcl
hitazcl Oct 15, 2015 at 10:36:49 (UTC)
Goto Top
Per DHCP kommt an eth3 ebenso eine IP zurück - alles ordnungsgemäß.
Wenn ich die IP anpinge und ein "arp -a" mache, steht da die Mac von eth0...
Member: hitazcl
hitazcl Oct 15, 2015 at 10:45:28 (UTC)
Goto Top
Der Server ist so komisch, dass sogar das Management Interface über die Onboard-Netzwerkkarten geschleust wird...

Ich verstehe die Welt nicht mehr face-wink
Member: Pjordorf
Pjordorf Oct 15, 2015 at 10:49:59 (UTC)
Goto Top
Hallo,

Zitat von @hitazcl:
Der Server ist so komisch
Das dieser keinen Namen oder Hersteller hat? Ist das ein Geheimnis was du nutzt?

Gruß,
Peter
Member: hitazcl
hitazcl Oct 15, 2015 at 12:01:42 (UTC)
Goto Top
Nein, das ist natürlich doch kein Geheimnis.... face-smile

Ist ein IBM x3250 M4 2583-F2G
Member: Pjordorf
Pjordorf Oct 15, 2015 at 12:19:47 (UTC)
Goto Top
Hallo,

Zitat von @hitazcl:
Ist ein IBM x3250 M4 2583-F2G
Network interfaces Integrated two-port Gigabit Ethernet using Intel 82574L controller. One port is shared with IMM2.
Und aus dessen Seite von https://lenovopress.com/tips0812
Network adapters
The x3250 M4 offers two integrated Gigabit Ethernet ports. One port is shared with Integrated Management Module (IMM).

 The Integrated NICs have the following features:
•Intel 82574L chip 
•TCP/UDP, IPv4, and IPv6 checksum offloads 
•TCP Segmentation/Transmit Segmentation Offloading (TSO) 
•Wake on LAN support 
•802.1Q VLAN tagging support 
•Support for jumbo frames up to 9 KBytes 
•NIC Teaming (Load Balancing and Failover) with Intel PROSet software

 The Broadcom NetXtreme Dual Port Ethernet Compact Adapter, SBB 90Y5381, feature code A1R5, is designed to fit in Slot 1 of the x3250 M4 server, thereby freeing up the PCIe x8 slot for other purposes. Use this adapter when you don't have the ServeRAID BR10il v2 or H1110 controller configured as it occupies the same slot. The Broadcom NetXtreme Dual Port Ethernet Compact Adapter is available CTO or special bid only and has these features:
•Broadcom 5718 ASIC 
•Full-duplex (FDX) capability 
•IEEE 802.3x FDX flow control 
•I/O virtualization support for VMware NetQueue and Microsoft VMQ 
•Function Level Reset (FLR) 
•IPv4/IPv6 offload: TCP, IP, and UDP checksum offload 
•Large send offload (LSO) 
•TCP segmentation offload (TSO) 
•Receive side scaling (RSS) 
•Transmit-side scaling (TSS) 
•IEEE 802.1Q VLAN tagging 
•VLAN insertion and extraction 
•Jumbo frames up to 9,600 bytes 
•NIC Teaming (Load Balancing and Failover) with other Broadcom NX or NX2 adapters 
•Wake On LAN support 
•Message Signal Interrupt (MSI-X) support

Note: TCP Offload Engine (TOE) is not supported by the Broadcom NetXtreme Dual Port Ethernet Compact Adapter.

 The following table lists additional supported network adapters. All adapters are supported only in Slot 2 with the exception of the Broadcom NetXtreme Dual Port Ethernet Compact Adapter which is installed in Slot 1.

 Table 9. Network adapters 

Part number Feature code  Description (all install in slot 2 except where noted)  Maximum Supported  
10 Gb Ethernet  
94Y5180 A4Z6 Broadcom NetXtreme Dual Port 10GbE SFP+ Adapter for System x 1 
42C1820* 1637 Brocade 10 Gb Dual-port CNA for System x 1 
00JY820 A5UT Emulex VFA5 2x10 GbE SFP+ PCIe Adapter for System x 1 
00JY830 A5UU Emulex VFA5 2x10 GbE SFP+ Adapter and FCoE/iSCSI SW for System x 1 
None** AS3M Emulex VFA5 2x10 GbE SFP+ Integrated Adapter for System x 1 
00JY824 A5UV Emulex VFA5 FCoE/iSCSI SW for PCIe Adapter for System x (FoD)
(Features on Demand upgrade for 00JY820 and feature AS3M) 1 
49Y7960 A2EC Intel X520 Dual Port 10GbE SFP+ Adapter for System x 1 
49Y7970 A2ED Intel X540-T2 Dual Port 10GBase-T Adapter for System x 1 
81Y3520 AS73 Intel X710 2x10GbE SFP+ Adapter for System x 1 
81Y9990 A1M4 Mellanox ConnectX-2 Dual Port 10GbE Adapter for System x 1 
42C1800 5751 QLogic 10 Gb Dual Port CNA for System x 1 
90Y4600 A3MR QLogic 8200 Dual Port 10GbE SFP+ VFA for System x 1 
Gigabit Ethernet  
None** A1R5 Broadcom NetXtreme Dual Port Ethernet Compact Adapter (installs in slot 1) 1 
49Y7910 A18Y Broadcom NetXtreme II Dual Port 10GBaseT Adapter 1 
90Y9352 A2V3 Broadcom NetXtreme I Quad Port GbE Adapter for System x  1 
42C1780 2995 NetXtreme II 1000 Express Dual Port Ethernet Adapter 1 
49Y4220 5766 NetXtreme II 1000 Express Quad Port Ethernet Adapter 1 
49Y4230 5767 Intel Ethernet Dual Port Server Adapter I340-T2 for System x 1 
49Y4240 5768 Intel Ethernet Quad Port Server Adapter I340-T4 for System x 1 
00AG500 A56K Intel I350-F1 1xGbE Fiber Adapter for System x 1 
00AG510 A56L Intel I350-T2 2xGbE BaseT Adapter for System x 1 
00AG520 A56M Intel I350-T4 4xGbE BaseT Adapter for System x 1 
* Withdrawn from marketing
** This adapter is available via CTO or special bid only

 For more information, see the list of Lenovo Press Product Guides in the Networking adapters category:
http://www.redbooks.ibm.com/portals/systemx?Open&page=pg&cat=networkadapters
Warum also laufen deine NICS dann nur im TEAMING wie du sagst?

Gruß,
Peter
Member: hitazcl
hitazcl Oct 15, 2015 at 12:33:28 (UTC)
Goto Top
Es gab im BIOS nur Teaming - aber nicht die getrennte Behandlung beider NICs...
Immer wenn das abgestellt war ging gar nichts - ist aber auch zu lange her, dass ich das versucht habe.

Hier geht es eigentlich auch um die zusätzlich eingebaute 4-Port Netzwerkkarte und warum von z.B. eth3 der Verkehr über die Onboard (eth0) läuft...
Member: shotakan
shotakan Oct 17, 2015 at 23:45:55 (UTC)
Goto Top
Liebe Menschen
Ich habe auch eine Frage:
In einem anderen Thread habe ich gefragt, jedoch ich bräuchte eure Ideen.

Netzwerk Probleme SERVER 2008 R2

Also:

Wenn ich so wie hier auf dem Grafik dargestellt konfigurieren möchte, wie kann ich fertig bringen, geht es überhaupt noch so wie gezeichnet ist?

dee02761692fa37ac3f984248ee6e209

Besten Dank für eure Antworten oder Ideen.

Gruss
Shota