自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(1)
  • 资源 (8)
  • 收藏
  • 关注

原创 NS2有线网络+无线网络混合

如图,2/3为无线节点,1为基站节点,0为有线节点。混合代码如下: #无线节点参数 set val(chan) Channel/WirelessChannel ;# channel type 信道类型:无线信道 set val(prop) Propagation/TwoRayGround ;# radio-propagation model 信道模型: set val(netif) Phy/Wi...

2018-09-28 15:22:10 810

NS2手册英文版

完整的NS2指导手册,给不会找资源的新手提供方便。手册里的例子在ns2.xx/tcl/ex中均能找到。

2018-11-09

ospf的代码实现

02f,18aug03,agi added #include 02e,02jun03,agi removed #include "rwproto.h" 02d,02jun03,agi changed #include "rwos.h" to include "ospf_rwos.h" 02c,29may03,agi removed unused includes, added new includes 02c,08may03,asr Changes to make OSPF virtual stack compatible 02b,09may03,agi added #include , removed #include 02a,17feb02,ram SPR 81808 Added OSPF memory partition support 21,13october01,kc Dynamic configuration changes. 20,21september01,kc Removed unused raw socket specific declarations. 19,26september00,reshma Added WindRiver CopyRight 18,25september00,reshma RFC-1587 implementation for OSPF NSSA Option, also tested against ANVL. 17,20july00,reshma Unix compatibility related changes. 16,06july00,reshma Removed unnecessary header files and defines. 15,23february00,reshma Changes for ospf mib 14,23december99,reshma Compatibility with VxWorks-IP and VxWorks RTM-interface 13,13august99,jack compilation fixes no IP case 12,05august99,nishit Replaced including IP header files by the new ospf_ip_structures.h 11,17may99,jack Added new include file ospf_patricia_32_bits_key_prototypes.h 10,28december98,jack Compiled and added some comments 09,25november98,rajive Deleted socket include file 08,11november98,jack Config changes, linted and big endian changes 07,30october98,jack Incorporate changes for compilation on Vxworks 06,12february98,release engineer code style changes, feature enhancements, complete CISCO and BAY compaltibility. OSPF v4.2.0 05,10july97,cindy Pre-release v1.52b 04,10february97,cindy Release Version 1.52 03,22october97,cindy Release Version 1.50 02,05june96,cindy Including visnpstr.h as a kludge for the first beta release. 01,05june96,cindy First Beta Release

2018-11-09

基于NS2(ns-2.1b8)的qos补丁

Overview of changes in qosrns-0.2-pre1 1. qosrns is implemented as a seperate module, so it can coexist with linkstate routing 2. qosrns uses RtModule interface, thus making it easy to use it with other routing modules 3. qosrns now supports on demand route computation. it is changed by setting variable Agent/QOSPF onDemand 4. qosrns now supports fine grained policy about when to send link updates. it could be send periodically, as well as when bandwidth changes by a certain percent. it can also use a hold down timer to not send updates too quickly. it is controoled by modifying following 3 variables: Agent/QOSPF set advertInterval #periodic update interval Agent/QOSPF set advertHoldDownInterval #hold down timer for updates Agent/QOSPF set advertMinBwChangePercent #updates due to bw changes are only sent when bw changes by this percent

2018-11-09

CS231n课程作业1

CS231n课程作业1所有代码,已实现,下载即可使用。包括相应的数据库。

2018-11-09

ospf-ns2.34-patch

针对ns2.34的ospf补丁文件,附有相关例子。 Copyright (C) 2006 by the University of Extremadura + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. This program is distributed in the + * hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. You should have received a copy of the GNU General + * Public License along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +// by Inés María Romero Dávila (inroda04@alumnos.unex.es) +// and Alfonso Gazo Cervero (agazo@unex.es)

2018-11-09

ns2.34的蚁群算法补丁

Antnet for NS2.34 Antnet implementation for ns2.34 based on the version for ns2.33 by Richardson Lima description available at http://antnetalgorithm.blogspot.com.br and http://antnet.wordpress.com Matthew Orlinski at orlinskm@cs.man.ac.uk and Richardson Lima at richardsonlimasurfjiujitsu@gmail.com with suggestions/improvements REMEMBER, YOU NEED GCC4.0 TO INSTALL NS2.34 * *********************************************** WARNING If you have made any alterations to your NS2.34 (e.g. installing newer protocols), installing with the below instructions MAY overright your changes. If you have made alterations and you still want to use this protocol. The changelog below should be helpful to you in getting Antnet into ns2.34 without destroying your additions. Instructions copy the files provided into NS2.34 directory as is. Run: ./configure make Finally, enjoy

2018-11-09

ns2的4g(FD-LTE)补丁

针对ns2.35的4G lte补丁,附有补丁/例子和论文。Many models have been built to study the performance of LTE/SAE. However, no open source LTE/SAE model is found. It is difficult to reuse and evaluate those models. This paper proposes an open source LTE/SAE model with the implementation in NS 2. This study is the further step of the earlier one in [3]. This paper is organized in the following way: firstly, the LTE/SAE overview and the simulation tool NS 2 are described; secondly, the network model and its configuration in NS 2 are introduced. Thirdly, the traffic model and its configuration are presented. At last, an example is given to demonstrate how to use the model to analyze the performance of LTE/SAE.

2018-11-09

简单NS2有线与无线网络混合

此资源中,包含一个TCl文件。运行该文件后,按照redme操作。其仿真规模为2个无线节点,1个有线节点,1个基站节点。

2018-09-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除