#1000BaseT
1000baseT is the new 10baseT.
February 10, 2026 at 10:30 AM
why is my network performance so bad
_checks the link speed_
...oh
March 30, 2024 at 4:57 PM
okay so here's a rough schematic of my network (partial, not every device is there but the major ones are)

The situation I was in was that before, all of the switches were only 1000baseT.

Right now I have 2.5GbE+1xSFP switches in the NOC and recording studio and […]

[Original post on plush.city]
September 25, 2026 at 11:28 PM
Nein ich mach nur 1000BaseT und 10GBaseSR 😅

Ich hab so einen Telekom-Verkäufer* mal einen SEHR intensiven und emotionalen Vortrag zu den verschiedenen Router-und Switch-Betriebsystemen gehalten, seit dem klingeln die nicht mehr 😅

*(Der wollte mir Kupfer statt mein gigabit Glas verkaufen)
April 28, 2026 at 3:53 PM
Firewall updates complete. No more SFP+ Transceiver wonking things up.

100% on HPE-Branded and Firmwared Intel X550-T2 NICs (there's still some HP/HPE synergies with firmware...like my HP RTX A4000 talks to the HPE ProLiant FW)

Doing speed tests to max out CPU […]

[Original post on tiggi.es]
March 2, 2025 at 6:15 PM
Ive posted this in some discord servers
why not post it here
Im now dual booting linux and macOS sonoma
idek what Im going to do on macOS but it was fun doing this AGAIN but with working graphics and sound
December 27, 2024 at 11:13 AM
I don't have a smartphone.

Managed to get a cable connection, doesn't work. 👇
July 8, 2026 at 6:38 PM
Noticed my desktop to server file transfers were not instant. ifconfig showed the ethernet was running at 100baseT! I unplugged it from the switch (Netgear GS108) for a minute, replugged it, and now it's 1000baseT as it should be. Weird.
April 20, 2026 at 12:58 AM
ここ1週間くらいMBAからのLAN接続が遅くて相手はNASなのでMBAかNASかSwitchかで悩んでたけど,MBA側で接続に使ってたBuffalo製の古いUSB-1000BaseTアダプタが熱かったのでさらに古いApple USB-100BaseTXアダプタに繋ぎ直したらめっちゃ快適になった…買い換えるかな
February 12, 2025 at 2:30 PM
Have you some clue about this one?

atphy0: <Atheros F1 10/100/1000 PHY> PHY 0 on miibus0
atphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow
December 23, 2025 at 10:48 AM
Ha, schräge Netzwerkprobleme kann man also doch auch mit dem #mac erleben.

https://schacknetz.de/wenn-das-kabelnetzwerk-am-mac-auf-einmal-lahmt/

#100baset #1000baset
schacknetz.de
January 25, 2026 at 8:38 PM
Authentic D-Link D-Link 1000BaseT to SFP Standalone Media Converter
Authorised Top Reseller in Singapore. Buy From Bizgram Asia Singapore. Contact Whatsapp +65-87776955
#DLink #DLinkSingapore #BizgramAsia #Singapore #Networking
January 12, 2026 at 9:34 AM
Legit sounds like your router linked up at 1000baseT half duplex instead of full
May 19, 2026 at 9:03 PM
Sigh. The switch I bought for the garage is 10/100 with two Gigabit ports and two SFPs. Thankfully most of the stuff out there is only going to need 10/100 but only having enough GbE for the two LACP uplinks is annoying.

I've ordered a pair of 1000BaseT SFPs as they were only £8 each and I […]
Original post on digipres.club
digipres.club
April 3, 2025 at 9:44 AM
Supercharge your network with Versitron unmanaged 1000Base-T media converters – plug-and-play simplicity with gigabit speed for reliable Ethernet-to-fiber connections.

Check it out : www.versitron.com/products/10-...

#Versitron #FiberModem #Networking #1000BaseT #GigabitFiber #PlugAndPlay
September 4, 2025 at 11:24 AM
Routing out one NIC, through a device, and back in another NIC
I have two network interfaces (in addition to the one I use for communication with the network): Code: ue0: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500 options=8000b<RXCSUM,TXCSUM,VLAN_MTU,LINKSTATE> ether 00:50:b6:f3:c2:81 inet 10.10.10.6 netmask 0xffffff00 broadcast 10.10.10.255 media: Ethernet autoselect (1000baseT <full-duplex,master>) status: active nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL> ue1: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500 options=8000b<RXCSUM,TXCSUM,VLAN_MTU,LINKSTATE> ether 00:50:b6:f3:c2:70 inet 10.10.10.7 netmask 0xffffff00 broadcast 10.10.10.255 media: Ethernet autoselect (1000baseT <full-duplex>) status: active nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL> Between the two interfaces is an Ethernet TAP. This is part of a one-way link project (more here: https://tryingtokeepitsecure.bz/one-way-network-links-for-small-businesses-part-1/). A program will open sockets for both 10.10.10.6 and 10.10.10.7. It will send a packet from 10.10.10.6 to 10.10.10.7, then from 10.10.10.7 to 10.10.10.6. The tap ports of the Ethernet TAP will provide two one-way links with a copy of the packet. What is giving me trouble is the routing. In Windows, I could do this: Code: route add 10.10.10.7 mask 255.255.255.255 10.10.10.6 if 15 route add 10.10.10.6 mask 255.255.255.255 10.10.10.7 if 27 (`if 15` is the interface for `10.10.10.6`, and `if 27` is the interface for `10.10.10.7`) So I try to do what seems like the FreeBSD equivalent: Code: route add -host 10.10.10.7 -interface ue0 10.10.10.6 255.255.255.255 route add -host 10.10.10.6 -interface ue1 10.10.10.7 255.255.255.255 And I get these errors: Code: add net 10.10.10.7: gateway ue0 fib 0: route already in table add net 10.10.10.6: gateway ue1 fib 0: route already in table The routing table looks like this (per ` `netstat -r``): Code: Internet: Destination Gateway Flags Netif Expire default doorkeeper.lynngra UGS re0 10.10.10.0/24 link#3 U ue0 10.10.10.6 link#2 UHS lo0 10.10.10.7 link#2 UHS lo0 localhost link#2 UH lo0 192.168.20.0/24 link#1 U re0 mercer.lynngrant.b link#2 UHS lo0 So I tried deleting the existing route and got this: Code: route delete -host 10.10.10.6 delete host 10.10.10.6 fib 0: gateway uses the same route I am trying to learn FreeBSD networking, but for some reason, it is really fighting me. If what I am doing wrong is obvious to anyone, I would much appreciate a hint. Thanks!
forums.FreeBSD.org
November 15, 2024 at 9:04 PM