老谢虚拟思科实验室v1.0

分类:思科技术日期:2011-09-02 - 23:43:20评论:17条作者:老谢

老谢虚拟思科实验室V1.0下载地址:http://115.com/file/bhix8puf#
xshell http://115.com/file/aqkdh8mm#
SecureCRTV5.1.0Build263汉化版 http://115.com/file/bhbvjzig#

为了方对网络感兴趣的朋友学习思科,所以制作了该工具,如果在使用过程中遇到了问题可以回复本贴反馈

v1.0版本的拓扑只有一个,该版本只是为了测试程序的可用性,如果没有问题的话会在下个版本用制作比较多的拓扑

使用方法如下:

1.运行第一步启动服务.bat该窗口在使用过程中不要关闭
2.运行需要的拓扑,比如两台直连.bat,输入list可以查看设备,默认所有设备不启动,输入start /all可以启动所有设备,如果需要启动某一台设备输入start /设备名,如要启动R1 输入start /R1即可,在拓扑图文件夹内可以看到对应的拓扑 该窗口在使用过程中不要关闭
3.使用终端telnet到设备,在拓扑.bat的cmd窗口里面输入list也能看到对应的端口
继续阅读…

dynamips的net文件详解

分类:网络技术日期:2011-09-02 - 21:42:12评论:0条作者:老谢

今天计划制作一个虚拟实验室,以后可以很方便的使用,所以开始接触dynamips的脚本编写

小弟找了很多资料,写了下面一个脚本的注释版,希望可以对跟我一样的新手朋友有帮助

autostart = False  //所有设备默认不启动,如果设置为ture为打开后启动全部设备,建议设为false
 
[localhost]
port = 7200
udp = 10000   //设置所有的虚拟设备使用的端口号
 
workingdir = ..\tmp\  //设置存放dynamips工作文件的目录
 
 
[[3620]] //设置路由型号为3620
ram = 26 //设置内存大小,尽量适合自己,太小启动不了设备,太大浪费
image = ..\ios\unzip-c3620-i-mz.122-37.bin //设置ios路径
slot0 = NM-4T  //接口模块
slot1 = NM-4E  //接口模块
idlepc = 0x60371394 //这个数值影响了程序的性能,最好多试几个
mmap = False //如何内存够大可以设置为ture,完全运行在内存,现在内存一般4G足够了
confreg = 0x2142 //默认寄存器值
 
        [[ROUTER R1]]
	model = 3620
	console = 2001
        E1/0 = S1 1
 
//model定义设备类型为3620
//console口的端口为2001
//E1/0口连接s1的1口  下同
 
 
 
        [[ROUTER R2]]
	model = 3620
	console = 2002
        S0/0 = R1 S0/0
        S0/1 = R3 S0/1
        S0/2 = R3 S0/2
        E1/0 = S1 2
 
 
 
 
        [[ROUTER R3]]
	model = 3620
	console = 2003
        E1/0 = S1 3
 
 
 
  [[ethsw S1]]
    1 = access 1
    2 = access 1
    3 = access 1
Tags: ,

wp-syntax样式两款

分类:折腾日期:2011-09-02 - 16:21:14评论:8条作者:老谢

之前用,感觉看着不爽,今天适当改改,放出来与大家分享

第一款

wp-syntax样式两款

—————————————————————————————

.wp_syntax {
  color: #100;
  background-color: #f9f9f9;
  border: 1px solid silver;
  margin: 0 0 1.5em 0;
  overflow: auto;
}
 
/* IE FIX */
.wp_syntax {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 15 : 0);
  width: auto;
}
 
.wp_syntax table {
  border-collapse: collapse;
}
 
.wp_syntax div, .wp_syntax td {
  vertical-align: top;
  padding: 2px 4px;
}
 
.wp_syntax .line_numbers {
  text-align: right;
  background-color: #def;
  color: gray;
  overflow: visible;
  width: 12px;
}
 
/* potential overrides for other styles */
.wp_syntax pre {
  margin: 0;
  width: auto;
  float: none;
  clear: none;
  overflow: visible;
  font-size: 12px;
  line-height: 1.333;
  white-space: pre;
}

第二款

wp-syntax样式两款

—————————————————————————————

.wp_syntax {
  color: #100;
  background-color: #f9f9f9;
  border: 1px;
  margin: 0 0 1.5em 0;
  overflow: auto;
}
 
/* IE FIX */
.wp_syntax {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 15 : 0);
  width: auto;
}
 
.wp_syntax table {
  border-collapse: collapse;
}
 
.wp_syntax div, .wp_syntax td {
  vertical-align: top;
  padding: 2px 4px;
}
 
.wp_syntax .line_numbers {
  text-align: right;
  color: gray;
  overflow: visible;
  width: 12px;
  border-right-width: 2px;
  border-right-style: solid;
  border-right-color: #00FF00;
}
 
/* potential overrides for other styles */
.wp_syntax pre {
  margin: 0;
  width: auto;
  float: none;
  clear: none;
  overflow: visible;
  font-size: 12px;
  line-height: 1.333;
  white-space: pre;
}
Tags: ,

Hello,world

分类:乱七八糟日期:2011-09-02 - 9:46:24评论:14条作者:老谢

哈哈,今天实在无聊了,买的书都没寄到,不能闲着吧,又重拾以前的《C程序设计》来看

#include<stdio.h>
main()
{
      printf("hello,world!");
      getchar();
      }

我都忘了当年C语言考试我是怎么蒙混过关了。。而且用笨笨的TC2.0来写程序~

Tags:

2011-9月

分类:吐槽日期:2011-09-01 - 14:21:48评论:7条作者:老谢

同学们大部分都开始了新的生活,进入了大学校园

老谢的路该怎么走呢,最近又进入了迷茫阶段。。。

昨天一口气买了五本书,够啃一段时间了

CCNP学习指南 (3本:路由、交换、排错)
鸟哥linux基础第三版 服务器第二版
C Primer Plus(第五版)中文版

有句歌词唱得好,可以在迷茫的时候找到最初的自己,最初的老谢在哪。。。

年前可能不会有太大动作了,年后会考虑去上海混日子

————————————————————-

和你迷路在茫茫人海 看不清未来 痛到现在

换主题啦:wpbus-D2

分类:折腾日期:2011-09-01 - 11:33:35评论:20条作者:老谢

主题功能说明:
1.支持widget侧栏小工具(默认为日历,广告,分类,存档,热门文章,随机文章,最新评论,友情链接)
2.无插件支持调用热门文章,随机文章,带评论者头像最新评论,相关文章。
3.支持评论嵌套5层,评论分页。
4.主题自带后台可设置个性头像.
5.主题自带可添加网站流量统计代码。
7.左右两栏布局,右栏宽度自适应.
6.预留插件wp-pagenavi,wp-postviews接口,启用插件即可使用。
7.自动等比例缩小日志内容中过大的图片,保护日志页面不被大图片撑开。
8.主题通过XHTML 1.0,CSS2.1和CSS3验证。
9.兼容浏览器IE6,IE7,IE8,Firefox,Chrome 。

地址:http://www.wpbus.com/?p=84

8-26 960顺利PASS CCNA

分类:思科技术日期:2011-08-27 - 0:02:52评论:9条作者:老谢

预约下午两点考试,上午十一点就到了,一直等到下午两点。。。。

考前出了点小问题,不过麻烦很快就解决了,就算你不知道你的考好,考官在他们的系统也能查到

————————–我叫分割线—————————

考试前面是动画演示,和xixi的CCNA真实考试环境曝光里面的Flash完全一致

接着就是问卷调查,第一个选项问你如何学习,我选study-myself(貌似是这个)自学,剩下的大家根据自己实际情况填写吧,我记得有预计考试时间、学习了多久等等,然后问你是否满18,选择YES点NEXT,然后弹出cisco的协议,选择YES点NEXT即可开始考试

我一共抽取到53题,没有拖图题,实验题是三宝

我可能比较RP吧,第一题就遇到EIGRP,比较紧张。。但内容还是比较简单的,就是AS号和宣告的问题,在S口有个passive接口,我没管他,貌似这样是正确的,的确不需要管他

接着在32题遇到VTP,这个还是很容易的,理解VTP的原理就行,然后考前多用几遍那些show就可以

在50题的时候遇到ACL,要求是B允许访问财务服务器,其他所有流量拒绝访问财务服务器,允许其他所有流量,没有DNS服务器,这样写的

access-list 100 permit tcp host B host Finance eq 80
access-list 100 deny ip any host Finance
access-list 100 permit ip any any

还有连接公网的那个接口的IP错了,改过来就行,有个小插曲,我第一遍把财务服务器的IP写错了,no掉了access-list 100 重新写了一遍

选择题方面,多做题库就行,由于考试中心上几天中毒,没法考试,闲来无事,我一天做一遍题库,总计做了六七遍,所以一路绿灯,遇到一个新题,四台路由,如果当掉一个会怎么样,我选择水平分割和路由中毒,不知道对不对 – –

俩月的努力没白费,终于把念叨一年多的NA给PASS了,祝大家也早日PASS

2011-8-27 00:02

Tags: ,

预祝NA PASS

分类:吐槽日期:2011-08-25 - 22:32:23评论:11条作者:老谢

明天要考CCNA了 准备了俩月 不知道能不能顺利PASS

先预祝一下吧,哈哈,要自信呢

2011-8-26 下午2:00 开考

NA拖拽

分类:思科技术日期:2011-08-12 - 20:26:47评论:16条作者:老谢

cost

a configurable value based by default on the bandwidth of the interfac

load

the amount of activity on a network resource

bandwidth

the data capacity of a link

hop count

the number of point-to-point links in a transmission path

reliablity

usually refers to the bit error rare of rach network link

delay

the amount of time required to move a packet from source to destination

————————-

holddown time

prevents a router from improperly reinstating a route from a regular routing update

split horizon

prevents information about a route from being sent in the direction from which the route

defining a maximum

prevents invalid updates from lopping the internetwork indefinitrly

route poisoning

causes a routing protocol to advertsie an infinite metric for a failed route

triggered update

decreases convergence time by immdeiately sendingroute informations response to a topology change

——————-

antispyware

detects software desinged to caputer sensitive information and removes it from the computer

antivirus

prevents known malicious programs from being installed on

workstations

IDS

identifies malicious network traffic and alerts network  personnel

firewall

filters traffic based on source and destination IP address or traffic type

——————-
poison reverse

A router learns from its neighbor that route is down,and the router sends update back to the neighbor with an infinite metric to that route.

LSA

The packets flooded when a toplogy change occues,causing network routers to ipdate their topological database and recelculate routes

split horizon

This prevents sending infomation about a route back out the same interface that originally learned about the route.

holddwon timer

For given period,this cause the router to ignore any updates with poorer metrics to a lost network.

Tags:

logo设计任务

分类:乱七八糟日期:2011-08-06 - 20:51:59评论:25条作者:老谢

类似以下页面所示logo的风格:

http://www.ypson.com/app/portfolio/logo-design/

设计一旦采用,会给予一定的现金奖励 (不小于 200元人民币)

有意者发邮件到我的邮箱:i@xj123.info领取设计任务

设计任务已结束,感谢各位朋友

Tags: