From 6ac2dcdb515d226cd4f95ae5bdd4fbd810a2032b Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Mon, 25 Jul 2005 22:37:19 +0000 Subject: [PATCH] Try to enable hardware cheksum --- etc/inc/pfsense-utils.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index ecf8b5418b..b62ed66607 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -108,6 +108,8 @@ function enable_hardware_offloading($interface) { } } } + mwexec("/sbin/ifconfig $interface txcsum 2>/dev/null"); + mwexec("/sbin/ifconfig $interface rxcsum 2>/dev/null"); return; }