LSNRCTL> status
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=lixora)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version ...
分类:
其他好文 时间:
2014-08-14 01:38:17
阅读次数:
334
1. 执行代码 vim /etc/network/interfaces2. 编辑内容 auto lo iface lo inet loopback #网卡eth0的配置 auto eth0 iface eth0 inet static address 192.168.1.30 #设置得静态IP...
分类:
其他好文 时间:
2014-08-13 21:49:17
阅读次数:
208
ipv6组播Router(config-if)#ipv6mldjoin-groupFF04::10Router(config-if)#ipv6mldaccess-listacc-grp-1!控制用户能加入的组播ipv6mldstatic-group[group-address][include|exclude]{source-address|source-list[acl]}如:Router(config-if)#ipv6mldstatic-groupff04::10include..
分类:
其他好文 时间:
2014-08-13 19:31:38
阅读次数:
249
CCIE学习笔记之RSVPRouter(config-if)#iprsvpbandwidth[interface-kbps][single-flow-kbps]!EnablesRSVPforIPonaninterfaceRouter(config)#iprsvpsendersession-ip-addresssender-ip-address[tcp|udp|ip-protocol]session-dportsender-sportprevious-hop-ip-addressprevious-ho..
分类:
其他好文 时间:
2014-08-13 15:07:46
阅读次数:
309
题意:每片雪花有六瓣,给出n片雪花,六瓣花瓣的长度按顺时针或逆时针给出,判断其中有没有相同的雪花(六瓣花瓣的长度相同)思路:如果直接遍历会超时,我试过。这里要用哈希表,哈希表的关键码key用六瓣花瓣的长度的和取余一个数得到,表中为雪花的存储位置address(即在snowflakes数组中的位置)代...
分类:
其他好文 时间:
2014-08-13 14:26:56
阅读次数:
236
英文原文:In iOS 7 and later, if you ask for the MAC address of an iOS device, the system returns the value 02:00:00:00:00:00. If you need to identify the ...
分类:
移动开发 时间:
2014-08-12 18:43:04
阅读次数:
323
#include
#include
char* strcpy(char* strDest, const char* strSrc)
{
assert((strDest != NULL) && (strSrc != NULL));
char* address = strDest;
while((*strDest++ = *strSrc++) != '\0')
NULL;
r...
分类:
其他好文 时间:
2014-08-12 10:21:03
阅读次数:
198
1、块级元素
一般用来搭建网站架构、布局、承载内容……它包括以下这些标签:
address、blockquote、center、dir、div、dl、dt、dd、fieldset、form、h1~h6、hr、isindex、menu、noframes、noscript、ol、p、pre、table、ul...
分类:
Web程序 时间:
2014-08-11 21:33:13
阅读次数:
385
问题
设置mac地址 11:22:33:44:55:66, 在OpenWrt正在开发的主trunk上就没有SIOCSIFHWADDR: Cannot assign requested address, 这个问题。
但是到attitude adjustment最新的trunk上就出现了,估计是内核版本不同,导致都mac地址的限制不同导致。
最新的反而不严格了?这个不科学啊。
解决方法...
分类:
其他好文 时间:
2014-08-11 21:21:42
阅读次数:
522
修改 /etc/mysql/my.cnf 把 bind-address =127.0.0.1 注释掉然后1.设置远程访问将相应用户数据表中的host字段改成'%';use mysqlmysql> select host, user from user;+-----------+------+| ho...
分类:
数据库 时间:
2014-08-11 17:39:12
阅读次数:
442