remotedhcp.php 279 B

1234567891011
  1. <?php
  2. //remote DHCP configs fetching
  3. if (ubRouting::get('action') == 'remotedhcp') {
  4. if (@$alterconf['REMOTEDHCP_ENABLED']) {
  5. $remoteDhcp=new UbillingDHCP();
  6. die($remoteDhcp->getConfigsRemote());
  7. } else {
  8. die('ERROR:REMOTEDHCP_DISABLED');
  9. }
  10. }