Changeset 835
- Timestamp:
- Jul 18, 2016, 6:15:29 PM (8 years ago)
- Location:
- trunk/Modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/Network.php
r834 r835 115 115 116 116 // TODO: Make notify time configurable 117 $this->MinNotifyTime = 2 * 60;117 $this->MinNotifyTime = 30; // seconds 118 118 } 119 119 -
trunk/Modules/NetworkConfigRouterOS/Generators/Netwatch.php
r829 r835 31 31 if($Interface['Name'] != '') $Name .= '-'.$Interface['Name']; 32 32 echo($Name.', '); 33 $Items[] = array('host' => $Interface['LocalIP'], 'interval' => '00:00: 30', 'comment' => $Name);33 $Items[] = array('host' => $Interface['LocalIP'], 'interval' => '00:00:10', 'comment' => $Name); 34 34 } 35 35 } -
trunk/Modules/NetworkConfigRouterOS/Generators/NetwatchImport.php
r829 r835 91 91 function Run() 92 92 { 93 RepeatFunction( 30, array($this, 'NetwatchImport'));93 RepeatFunction(10, array($this, 'NetwatchImport')); 94 94 } 95 95 }
Note:
See TracChangeset
for help on using the changeset viewer.