• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP interface_has_gateway函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中interface_has_gateway函数的典型用法代码示例。如果您正苦于以下问题:PHP interface_has_gateway函数的具体用法?PHP interface_has_gateway怎么用?PHP interface_has_gateway使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了interface_has_gateway函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: gettext

             } else {
                 // The user selected a gateway but did not provide a DNS address. Be nice and set the gateway back to "none".
                 $ignore_posted_dnsgw[$dnsgwname] = true;
             }
         }
     }
 }
 if (count(array_filter($dnslist)) != count(array_unique(array_filter($dnslist)))) {
     $input_errors[] = gettext('Each configured DNS server must have a unique IP address. Remove the duplicated IP.');
 }
 $direct_networks_list = explode(" ", filter_get_direct_networks_list());
 for ($dnscounter = 1; $dnscounter < 5; $dnscounter++) {
     $dnsitem = "dns{$dnscounter}";
     $dnsgwitem = "dns{$dnscounter}gw";
     if ($_POST[$dnsgwitem]) {
         if (interface_has_gateway($_POST[$dnsgwitem])) {
             foreach ($direct_networks_list as $direct_network) {
                 if (ip_in_subnet($_POST[$dnsitem], $direct_network)) {
                     $input_errors[] = sprintf(gettext("A gateway can not be assigned to DNS '%s' server which is on a directly connected network."), $_POST[$dnsitem]);
                 }
             }
         }
     }
 }
 # it's easy to have a little too much whitespace in the field, clean it up for the user before processing.
 $_POST['timeservers'] = preg_replace('/[[:blank:]]+/', ' ', $_POST['timeservers']);
 $_POST['timeservers'] = trim($_POST['timeservers']);
 foreach (explode(' ', $_POST['timeservers']) as $ts) {
     if (!is_domain($ts)) {
         $input_errors[] = gettext("A NTP Time Server name may only contain the characters a-z, 0-9, '-' and '.'.");
     }
开发者ID:LFCavalcanti,项目名称:pfsense,代码行数:31,代码来源:system.php


示例2: foreach

 foreach ($ui_databases as $curdatabase) {
     if (!stristr($curdatabase, $curcat)) {
         continue;
     }
     $optionc = explode("-", $curdatabase);
     $search = array("-", ".rrd", $optionc);
     $replace = array(" :: ", "", $friendly);
     switch ($curoption) {
         case "outbound":
             /* make sure we do not show the placeholder databases in the outbound view */
             if (stristr($curdatabase, "outbound") || stristr($curdatabase, "allgraphs")) {
                 continue 2;
             }
             /* only show interfaces with a gateway */
             $optionc = "{$optionc['0']}";
             if (!interface_has_gateway($optionc)) {
                 if (!isset($gateways_arr)) {
                     if (preg_match("/quality/i", $curdatabase)) {
                         $gateways_arr = return_gateways_array();
                     } else {
                         $gateways_arr = array();
                     }
                 }
                 $found_gateway = false;
                 foreach ($gateways_arr as $gw) {
                     if ($gw['name'] == $optionc) {
                         $found_gateway = true;
                         break;
                     }
                 }
                 if (!$found_gateway) {
开发者ID:z0x010,项目名称:pfsense,代码行数:31,代码来源:status_rrd_graph.php


示例3: ucwords

        ?>
									<select name='<?php 
        echo $fldname;
        ?>
'>
										<?php 
        $interface = "none";
        $dnsgw = "dns{$dnscounter}gwint";
        if ($pconfig[$dnsgw] == $interface) {
            $selected = "selected";
        } else {
            $selected = "";
        }
        echo "<option value='{$interface}' {$selected}>" . ucwords($interface) . "</option>\n";
        foreach ($interfaces as $interface) {
            if (interface_has_gateway($interface)) {
                if ($pconfig[$dnsgw] == $interface) {
                    $selected = "selected";
                } else {
                    $selected = "";
                }
                $friendly_interface = convert_friendly_interface_to_friendly_descr($interface);
                echo "<option value='{$interface}' {$selected}>" . ucwords($friendly_interface) . "</option>\n";
            }
        }
        ?>
									</select>
								<?php 
    }
    ?>
								</td>
开发者ID:nuclewall,项目名称:nuclewall,代码行数:31,代码来源:system.php


示例4: gettext

             if (is_ipaddrv6($pconfig[$dnsname]) && validate_address_family($pconfig[$dnsname], $pconfig[$dnsgwname]) === false) {
                 $input_errors[] = gettext("You can not specify IPv4 gateway '{$pconfig[$dnsgwname]}' for IPv6 DNS server '{$pconfig[$dnsname]}'");
             }
         } else {
             // The user selected a gateway but did not provide a DNS address. Be nice and set the gateway back to "none".
             $ignore_posted_dnsgw[$dnsgwname] = true;
         }
     }
 }
 /* XXX cranky low-level call, please refactor */
 $direct_networks_list = explode(' ', filter_get_direct_networks_list(filter_generate_optcfg_array()));
 for ($dnscounter = 1; $dnscounter < 5; $dnscounter++) {
     $dnsitem = "dns{$dnscounter}";
     $dnsgwitem = "dns{$dnscounter}gw";
     if (!empty($pconfig[$dnsgwitem])) {
         if (interface_has_gateway($pconfig[$dnsgwitem])) {
             foreach ($direct_networks_list as $direct_network) {
                 if (ip_in_subnet($_POST[$dnsitem], $direct_network)) {
                     $input_errors[] = sprintf(gettext("You can not assign a gateway to DNS '%s' server which is on a directly connected network."), $pconfig[$dnsitem]);
                 }
             }
         }
     }
 }
 # it's easy to have a little too much whitespace in the field, clean it up for the user before processing.
 $pconfig['timeservers'] = preg_replace('/[[:blank:]]+/', ' ', $pconfig['timeservers']);
 $pconfig['timeservers'] = trim($pconfig['timeservers']);
 foreach (explode(' ', $pconfig['timeservers']) as $ts) {
     if (!is_domain($ts)) {
         $input_errors[] = gettext("A NTP Time Server name may only contain the characters a-z, 0-9, '-' and '.'.");
     }
开发者ID:reelsense,项目名称:core,代码行数:31,代码来源:system_general.php


示例5: get_configured_interface_with_descr

  *    lets automatically create entries
  *    for all of the interfaces to make life easier on the pip-o-chap
  */
 $ifdescrs = get_configured_interface_with_descr();
 foreach ($ifdescrs as $if => $ifdesc) {
     if (interface_has_gateway($if)) {
         continue;
     }
     $osipaddr = get_interface_ip($if);
     $ossubnet = get_interface_subnet($if);
     if (!is_ipaddr($osipaddr) || empty($ossubnet)) {
         continue;
     }
     $osn = gen_subnet($osipaddr, $ossubnet);
     foreach ($ifdescrs as $if2 => $ifdesc2) {
         if (!interface_has_gateway($if2)) {
             continue;
         }
         $natent = array();
         $natent['source']['network'] = "{$osn}/{$ossubnet}";
         $natent['dstport'] = "500";
         $natent['descr'] = sprintf(gettext('Auto created rule for ISAKMP - %1$s to %2$s'), $ifdesc, $ifdesc2);
         $natent['target'] = "";
         $natent['interface'] = $if2;
         $natent['destination']['any'] = true;
         $natent['staticnatport'] = true;
         $a_out[] = $natent;
         $natent = array();
         $natent['source']['network'] = "{$osn}/{$ossubnet}";
         $natent['sourceport'] = "";
         $natent['descr'] = sprintf(gettext('Auto created rule for %1$s to %2$s'), $ifdesc, $ifdesc2);
开发者ID:rdmenezes,项目名称:pfsense,代码行数:31,代码来源:firewall_nat_out.php



注:本文中的interface_has_gateway函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP interface_ipalias_configure函数代码示例发布时间:2022-05-15
下一篇:
PHP interface_get_wireless_clone函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap