Log in to ask questions, share your expertise, or stay connected to content you value. Don’t have a login? Learn how to become a member.
See matching posts in thread - The issue is that the guy who supporting MAC mac...
/mac-address; 073 call write-it ($message = $message); 074 ) 075 ) 076 ) 077 ) 078 /* 079 * NAME: WRITE-IT 080 * PURPOSE: Writes a message to SYSLOG that is passed to it. 081 * CALLED: Can be called at any time from any where. 082 * 083 * PARMS PASSED: 084 * $message = The string to print out 085 * 086 */ 087 template write-it($message) ( 088 expr jcs:syslog("user.warn","link-up.slax: ",$message); 089 ) 090 /* 091 * NAME: DEBUG 092 * PURPOSE: Writes debugging information to SYSLOG. 093 * CALLED: Can be called at any time from any where. 094 * 095 * PARMS PASSED: 096 * $type = indicates the type of information 097 * being passed in. An "r" means the 098 * information is a node-set result. 099 * $on = turns on writing it or not 100 * $output = the string that needs to be 101 * printed 102 * 103 */ 104 template debug ( $type, $on, $output) ( 105 if ($on == "1") ( 106 if ($type == "r" ) ( 107 for-each( $output ) ( 108 call write-it($message = . ); 109 ) 110 ) 111 else ( 112 call write-it($message = $output); 113 ) 114 ) 115 ) XML Script Contents 01 <?
See matching posts in thread - Hello All, What I would like to ask you is the f...
See matching posts in thread - The configuration is the same, no-mac-learning i...
See matching posts in thread - Initial thought is just to look at mac-address o...
See matching posts in thread - We are trying to do the same thing on our Junipe...
See matching posts in thread - After binding multiple /24s on multiple vlans on...
See matching posts in thread - What I've noticed is that maybe one MAC address ...