#! /usr/bin/php useIface()->numberofInterfaces() . "\n\n"; echo "ID: Name - Index - Type - State - Media Available - Jack Type - State Exits - Jabber State - Autoneg\n\n"; foreach( $host->useIface()->names() as $id => $name ) { if( $id >1100 ) continue; echo "{$id}: {$name} - {$host->useMAU()->index()[$id]}" . " - {$host->useMAU()->types( true )[$id]}" . " - {$host->useMAU()->states( true )[$id]}" . " - {$host->useMAU()->mediaAvailable( true )[$id]}" . " - {$host->useMAU()->jackTypes( true )[$id]}" . " - {$host->useMAU()->mediaAvailableStateExits()[$id]}" . " - {$host->useMAU()->jabberStates( true )[$id]}" . " - " . ( $host->useMAU()->autonegSupported()[$id] ? 'Y' : 'N' ) . " - " . ( $host->useMAU()->autonegAdminState()[$id] ? 'Y' : 'N' ) . "\n"; } echo "\n"; exit( 0 ); } exit( 0 );