From: paulr Date: Tue, 4 Oct 2011 16:54:22 +0000 (+1100) Subject: need to talk to ethtool - ug X-Git-Url: http://git.pjr.cc/?p=CBFWR.git;a=commitdiff_plain;h=2bd3b834225a8b7aaf79b8114c958737411a8281;hp=13e5ebe14a18fb0d217fdc6fc4fc786a678889da need to talk to ethtool - ug --- diff --git a/libcbfwr/config.php b/libcbfwr/config.php index c0c43d1..2f6ce0b 100644 --- a/libcbfwr/config.php +++ b/libcbfwr/config.php @@ -41,6 +41,11 @@ class Config { $this->config = $config; } + function parseEthtool($interface) + { + // im not going to enjoy this, not one little bit + } + function findHardware() { @@ -63,6 +68,8 @@ class Config { } fclose($fp); } + + // find hardware if(file_exists("/sys/class/net/$fname/mtu")) $this->config["hardware"]["netdev"][$fname]["mtu"] = trim(file_get_contents("/sys/class/net/$fname/mtu")); if(file_exists("/sys/class/net/$fname/address")) $this->config["hardware"]["netdev"][$fname]["hwaddress"] = trim(file_get_contents("/sys/class/net/$fname/address")); if(file_exists("/sys/class/net/$fname/bonding")) $this->config["hardware"]["netdev"][$fname]["bonding"] = true;