今天遇到一个事情,挺纠结的。客户需要把16个私网地址配置成公网地址,本来他这边有2个C的公网地址和6个接口地址。我本来是打算将未用的公网地址重新写一个vlan,然后再核心交换机上写上这个vlan的IP网关,但是又有当初规划的时候,分机房比较多,而我也不知道其他汇聚层设备的管理IP,这样做的后果就是一部分可以上,一部分不能上。最后通过在RG-WALL 1600M设备上配置
原创 2014-02-25 21:57:51
1682阅读
锐捷RG-WALL60防火墙配置详解
转载 精选 2012-09-07 12:55:07
2354阅读
本来防火墙初始化的时候,我们可以通过WAN口,将你的IP设置成192.168.10.200/24,去访问防火墙的192.168.10.100进行管理。访问的时候要注意,如果你用的是USB-KEY进行管理认证,就在浏览器输入:https://192.168.10.100:6667/ 如果你用的是证书认证,就输入:https://192.168.10.100:6666/ 这里呢,因为我把网络环境都
推荐 原创 2010-04-22 08:40:27
10000+阅读
4评论
Wall Problem Description Once upon a time there was a greedy King who ordered his chief Architect to build a wall around the King's castle. The King w
转载 2016-12-28 21:46:00
164阅读
2评论
wall 类似广播,在同网段内发送消息,类似内网的聊天工具
转载 2019-09-09 08:22:00
245阅读
2评论
官网:://gcc.gnu.org/onlinedocs/gcc-4.7.2/gcc/Warning-Options.html#Warning-Options3.8OptionstoRequestorSuppressWarnings.....-WallThisenablesallthewar...
转载 2014-04-21 20:27:00
117阅读
在Linux系统中,Wall命令是一个非常有用的工具,用于向所有登录用户发送消息。红帽Linux作为业界领先的Linux发行版之一,自然也支持这个功能。通过使用wall命令,系统管理员可以方便地向所有用户发送通知、警告或其他重要消息。 Wall命令的使用非常简单,只需在命令行中输入"wall",然后在提示符后输入您希望发送的消息即可。消息可以是文本、警告或任何其他形式。一旦您按下回车键,系统会立
原创 2024-03-12 09:43:27
102阅读
NB-IoT的天线电缆可以接多长?常用的线缆有RG316、RG174、RG178,不同的线缆其衰减程度如何?
原创 2022-11-20 23:13:03
2770阅读
问题 : Repair the Wall时间限制: 1 Sec  内存限制: 128 MB题目描述Long time ago , Kitty lived in a small village. The air was fresh and the scenery was very beautiful. The only thing that troubled her is the typhoon.W...
原创 2022-02-06 11:42:30
101阅读
wall命令    这个命令的功能是对全部已登录的用户发送信息,用户可以先把要发送的信息写好存入一个文件中,然后输入:    # wall < 1.txt 
转载 精选 2013-07-30 08:54:31
570阅读
问题 : Repair the Wall时间限制: 1 Sec  内存限制: 128 MB题目描述Long time ago , Kitty lived in a small village. The air was fresh and the scenery was very beautiful. The only thing that troubled her is the typhoon.W...
原创 2021-07-14 11:13:57
201阅读
Repair the WallTime Limit : 5000/1000ms (Java/Other)Memory Limit : 32768/32768K (Java/Other)Total Submission(s) : 2Accepted Submission(s) : 2Font:Time...
原创 2021-08-04 11:06:53
167阅读
* wall treatmentYou can combine the turbulent flow interfaces with different types of wall treatments, according to the following list: 1. Wall functi
原创 2021-07-29 14:09:13
205阅读
Changes Happens - They keep moving the cheese Anticipat
转载 2008-04-05 13:41:00
70阅读
2评论
#include #include using namespace std; const double PI=acos(-1.0); int n,l; typedef struct point { double x,y; point(double xx=0,double yy=0):x(xx),y(yy){} }vector; point p[1010],q[1010]; void sort1(point *a,int x,int y,point *t) { int m,u,v,i; if(y-x>1) { m=x+(y-x)/2; u=x,v=m,i=x; sort1(...
转载 2013-05-18 19:34:00
29阅读
2评论
题意:顺时针方向给出N个点,求外围距离这些点L距离的点围成的图形的周长,结果四舍五入到整数(3 >先求凸包,然后求凸包的周长加上一个半径为L的圆的周长。注意:用round()四舍五入后,若用%.0lf输出会WA,round()后强转为int后输出AC!#include #include #include using namespace std;const int maxn = 1000 + 10;const double eps = 1e-10;const double pi = acos(-1);int dcmp(double x){ if(fabs(x) 1 && C
Long time ago , Kitty lived in a small village. The air was fresh and the scenery was very beautiful. The only thing that troubled her is the typhoon.
转载 2018-04-23 17:26:00
107阅读
2评论
Paint The WallTime Limit: 20000/10000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 120Accepted Submission(s): 22Problem DescriptionAs a amateur artist, Xenocide loves painting the wall. The wall can be considered as a line consisting of n nodes. Each node has its ow
转载 2013-04-11 13:40:00
69阅读
2评论
感觉计算几何好难,有些东西做一次理解之后留个模版就好了,不过模版要高度可靠才行,在做凸包时候我们知道极角排序虽然快一点,但是还有一种情况不能解决,当第一条边和最后一条边都存在三点共线的情况的时候是必然矛盾的,当严格要求凸包中的点集的时候就要用水平序了。这道题也要考虑共线的情况但不会有这不会影响求距离。所以还是用Graham Scan和极角排序。#include<iostream> #include<algorithm> #include<cmath> #define exp 1e-8 #define pi 4*atan(1.0) using namespac
转载 2012-07-16 11:10:00
102阅读
2评论
题目:有非常多点。修一座最短的围墙把素有点围起来,使得全部点到墙的距离不小于l。 分析:计算几何,凸包。 假设。没有距离l的限制。则答案就是凸包的周长了。有了距离限制事实上是添加了2*π*l。 证明:如上图。在凸包外做相应边的矩形; 多边形内角和 = 180*(n-2); 外角和 = 360*n -
转载 2017-04-20 09:11:00
89阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5