Changeset 983 for trunk/Modules
- Timestamp:
- Apr 22, 2026, 10:11:45 PM (3 weeks ago)
- Location:
- trunk/Modules
- Files:
-
- 2 edited
-
IS/IS.php (modified) (1 diff)
-
NetworkConfigRouterOS/Generators/FirewallNAT.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/IS/IS.php
r980 r983 464 464 $Form->SetClass($Table); 465 465 $this->Title .= ' - '.$Form->Definition['Title'].' položka'; 466 $Form->LoadValuesFromDatabase($Id); 466 try 467 { 468 $Form->LoadValuesFromDatabase($Id); 469 } catch (Exception $E) 470 { 471 return $this->SystemMessage('Chyba', 'Položka '.$Id.' nenalezena.'); 472 } 467 473 $Form->OnSubmit = '?a=view'; 468 474 $Output = $Form->ShowViewForm(); -
trunk/Modules/NetworkConfigRouterOS/Generators/FirewallNAT.php
r929 r983 35 35 //$Items[] = array('chain' => 'inet-out', 'dst-address' => '172.16.1.1/30', 'action' => 'accept', 'comment' => 'Local_subnet'); 36 36 //$Items[] = array('chain' => 'inet-in', 'dst-address' => '172.16.1.1/30', 'action' => 'accept', 'comment' => 'Local_subnet'); 37 38 // Redirect ping from warp to inext test network 39 $Items[] = array('chain' => 'inet-out', 'src-address' => '10.145.64.23', 'dst-address' => '172.20.195.192/29', 'protocol' => 'icmp', 40 'action' => 'src-nat', 'to-addresses' => '172.20.195.197', 'comment' => 'warp_ping_inext'); 37 41 38 42 $DbResult = $this->Database->query('SELECT `Member`.*, `Subject`.`Name` FROM `Member` '.
Note:
See TracChangeset
for help on using the changeset viewer.
