0

我已经安装了 OSPF补丁并且ns2它安装正确。现在,当我尝试tcl使用命令运行相同补丁的示例时,ns ospf0.tcl会出现以下错误:

(TCL) Creating simulator & trace files...
(TCL) Setting up nodes and links...
(TCL) Configuring traffic objects...
(TCL) Configuring routing protocol...
invalid command name "Agent/rtProto/OSPF"
while executing
"Agent/rtProto/OSPF set helloInterval 1"
(file "ospf0.tcl" line 132)

这里有人说indicates a failed build. (Or you are using a wrong executable 'ns'.),但补丁安装没有错误。ns我曾经在没有补丁和没有 OSPF 的情况下顺利运行 tcl 文件。我有ubuntu 14.04并且ns2 2.35已经应用​​了10-ospf4ns2.34补丁。有什么想法有什么问题吗?nam如果有人只是给我文件来模拟甚至跟踪文件,那也会非常有帮助。

4

1 回答 1

1

Ns-2.35 :补丁10-ospf4ns2.34-base.patch将失败并显示common/packet.h

请在此处阅读帖子 #4 ... 关于 » ospf_ns235.patch «

以下是您可以执行的操作:

Ubuntu 14.04 : $ sudo apt-get remove ns2
$ tar xvf ns-allinone-2.35_gcc482.tar.gz

https://drive.google.com/file/d/0B7S...ew?usp=sharing

$ cd ns-allinone-2.35/
$ patch -p0 < ospf_ns235.patch

https://drive.google.com/file/d/0B7S...ew?usp=sharing

$ ./install
$ cd ns-2.35/
$ sudo make install 
$ cp ns ns-ospf
$ sudo cp ns-ospf /usr/local/bin/
$ cd tcl/ex/ospf/
$ mkdir out_ospf0 out_ospf1 out_ospf2 out_ospf3 out_ospf4 out_ospf5 out_ospf6 out_ospf7 out_ospf8 out_ospf9
$ ns-ospf ospf0.tcl
.
.
$ ns-ospf ospf9.tcl
于 2015-01-25T10:47:47.360 回答