Op Enteprise Linux Today wordt melding gemaakt van een probleem na het updaten van de kernel. Doordat de kernel nu is uitgerust met het Explicit Congestion Notification (ECN) protocol kan het voorkomen dat websites niet te benaderen zijn. Het grote voordeel van dit protocol is dat routers en hosts een packet kunnen sturen welke aangeeft dat deze bezet is of over onvoldoende bandbreedte beschikt om de host van data te voorzien. Routers die (nog) geen ondersteuning bieden aan dit protocol, handelen de packets van de host af als invalide en dus krijgt de host geen verbinding. De gebruiker kan echter de ondersteuning voor ECN helemaal uitzetten of dit tijdelijk doen zodat het probleem verholpen is:
ECN is a way to improve the speed of the Internet for everyone by allowing hosts or routers to specifically notify one another when there is congestion due to heavy traffic. With the existing TCP/IP standards, the only way to detect congestion was that routers would drop packets when they had no bandwidth available. These packets would be automatically retransmitted by the sending host, but the host would (presumably) notice that packets were being dropped and would decrease its transmission rate.
[..] Another, perhaps simpler, approach is to use the sysctl feature of the /proc virtual filesystem to turn off ECN at runtime. Executing this command:
echo "0" > /proc/sys/net/ipv4/tcp_ecn
will turn off ECN support until the next reboot, while replacing "0" with "1" in the above command will turn ECN back on.