Q1: What are the prerequisites of OPNET Modeler 11.0 installation?
 


SYSTEM REQUIREMENT LIST

Platform: Sun Microsystems

Series: Solaris 8 (Solaris 8 Recommended Patch Cluster *), 9
CPU: UltraSPARC or later processor (e.g. UltraSPARC II, UltraSPARC III)
TCP/IP networking software C Compiler (only for Modeler): SunPro 5.X or gcc 2.95 or g++2.95, or higher

* Obtaining Solaris 8 Patch Cluster
- Visit
http://sunsolve.sun.com/patches
- Select the link "Recommended and Security Patches" from the right hand side of the page
- Download the "Solaris 8" patch from the listing of "Recommended & Security Patch Clusters for Solaris"

IMPORTANT Requirements:
**OPNET requires access to an ANSI C compiler or C++ compiler (Solaris)
**On UNIX installations the license file must be stored in either the /opt or /var/adm directory. The directory that is chosen must be located on a local hard drive or partition, may not be a symlink, and may not be a network mounted partition.


Platform: Microsoft

Series: Windows NT 4.0 with SP 3, 5 or 6a (SP 4 & 6 not supported),
Windows 2000 Professional (SP 1 ,2 and 4 are supported but not required)
Windows XP Professional (SP 1 required)

CPU: Intel Pentium 3, 4 or compatible (1.5 GHz or better for IT Guru, 500 MHz or better for Modeler, 2.0 GHz or better for SP Guru) TCP/IP networking software C Compiler (only for Modeler): Microsoft Visual C/C++ 6.x or Visual Studio .NET, up to Visual Studio .NET 2003

Note: OPNET highly recommends the Professional Edition of the Visual C/C++ or .NET compiler. Using the Standard Edition of the compiler, which does not allow for code optimizations, will result in slower Discrete-Event Simulations.

  

Q2: Where can I obtain the System requirements for my OPNET product?
 
Modeler: http://www.opnet.com/solutions/network_rd/
IT Guru: http://www.opnet.com/solutions/capacity_planning/
SP Guru: http://www.opnet.com/solutions/capacity_planning/

Q3: How to verify my version of Windows NT and UNIX?
 

Determine the Service Pack installed on your Windows NT system by running "winver.exe".
Select 'Run' from the [Start] button in the lower left of your window screen. Type in the command "winver" and press [OK]. An "About Windows NT (R)" window will open, displaying the version and service pack level installed.

Determine SunOS Patch Level by
# showrev -p | grep libC
Please visit the SunSolve web site at http://sunsolve.sun.com or contact Sun Technical Support for the most current patch that will upgrade the C++ on your system to the version specified above or later.

  

Q4: I wanted to know how can I make sure that my Visual's C++ BIN directory is included in the Path environment variable?
 


TO VERIFY THAT THESE SETTINGS ARE CORRECT:

One quick way is to open a new OPNET Console (from the "Start" button, select "Program Files"->"OPNET Modeler" -> "OPNET Console") then type the following and examine the output of "path", "lib" and "include" environment variables.

prompt> set

Another way to check, is to type the following command:

prompt> cl

If it returns the following output:

Microsoft (R) 32-bit C/C++ Standard Compiler Version 12.00.8168 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.

usage: cl [ option... ] filename... [ /link linkoption... ]

Then it means that MSVC++ is in your path.

  

Q5. When I run simulations on Windows NT/2000, I get error messages like "invalid file" and "disk full". What could the problem be?
 

First, check to see if your disk is indeed full.
If you do have available disk them, then check what version of Microsoft Visual C++ you are using. The out of space error often occurs when attempting to use MSVC 4.0 or 5.0 together with OPNET 7.0. OPNET 7.0 requires MS Visual C++ version 6.0 or later.

  

Q6: What is OPNETWORK 2004?
 

The largest network and application modeling and simulation event in the world—offering a dynamic range of symposiums, case studies, and modeling sessions presented by international experts. OPNETWORK conference will be held annually by OPNET Technologies Inc. at Washington D.C. For more information, please visit http://www.opnet.com/opnetwork2004

  

Q7: I want to find a topic in the Online Documentation, but I don't know what manual to look in. Can I do a global search?
 

Yes, you can. The OPNET online documentation includes a catalog that indexes the complete documentation set. Acrobat Reader uses this catalog to perform full-text searches of the indexed documents. You can search for single words or phrases, include wildcard characters (*, ?) and Boolean operators (AND, OR, NOT) in your search string, or request that Reader search for related parts of speech (word stemming), similar-sounding words, or synonyms of a search word.

To use this feature, choose Edit > Search from the Reader menu bar or click the Search icon (binoculars & page) in the Reader tool bar. You can then enter a search string and Reader will return a list of all files containing a matching string. Double-click on a file icon and Reader opens the file to the first occurrence of the string. For detailed instructions about using the Search feature, refer to the section called "Searching Adobe PDF Documents" in the Acrobat Reader user guide (choose Help > Adobe Reader Help from the Reader menu bar).

Note: The Search feature requires the Search plug-in for Acrobat Reader. If you are not using the copy of Reader provided with the OPNET online documentation, you may not have this plug-in. To get the Search feature, install a copy of Acrobat Reader+Search. You can get this software from the OPNET documentation CD or by downloading it from the Adobe web site.

  

Q8: How do I redirect simulation output (ODB, printf's, stdout, etc.) to a file on Windows NT or UNIX? Can I enter ODB commands while doing this?
 

Redirecting simulation output to a file will help if you are generating many text messages via ODB, printf's, etc. After running the simulation, you can then search in the text file, "diff" it vs. previous runs, etc.

---------------------
Windows NT Directions
---------------------

On Windows, to get redirection to work you need to directly execute op_runsim_dev (executing op_runsim will not work). First, select Start->Programs->OPNET->OPNET Console. This will bring up a DOS prompt with the correct environment for running OPNET related programs. Then execute:

op_runsim_dev -net_name project1-scenario1 [plus any additional flags] > c:\temp\out.txt

You can't see the ODB prompt when running like this. A simple technique is to create a text file with all your sequential ODB commands. For example, if you want to turn on "fulltrace" starting at time 101, you create a file c:\temp\odb_commands.txt with the following contents:

tstop 101
cont
fulltrace
cont

Then execute:

op_runsim_dev -net_name project1-scenario1 [plus any additional flags] < c:\temp\odb_commands.txt > c:\temp\out.txt

---------------
UNIX Directions
---------------

On UNIX, the easiest way to do this is to execute the "script" command:

prompt% script

This command starts a new shell and logs all output to a file called "typescript". Run your simulation from the prompt:

prompt% op_runsim -net_name project1-scenario1 [plus any additional flags]

If you are using ODB, you can interact with your simulation as you normally would. When your simulation is done, exit the shell:

prompt% exit

This will flush output to the file "typescript", which you can then examine.

An alternative to using the "script" command on UNIX is to redirect your simulation output:
prompt% op_runsim -net_name project1-scenario1 [plus any additional flags] > /tmp/out.txt

You can't see the ODB prompt when running like this. A simple technique is to create a text file with all your sequential ODB commands. For example, if you want to turn on "fulltrace" starting at time 101, you create a file /tmp/odb_commands.txt with the following contents:

tstop 101
cont
fulltrace
cont

Then execute:
op_runsim -net_name project1-scenario1 [plus any additional flags] < /tmp/odb_commands.txt > /tmp/out.txt

If you are doing this, you can also use the UNIX command "tail -f /tmp/out.txt" to see a continously streaming update of your output file.

  

Q9: What is available at OPNET FTP Server ftp.opnet.com?
 

FTP server contains patches, updates, contributed papers and contributed models. Please contact us for user name and Password to access.


Q10: What is OPNET Support Center?
 

The OPNET Support Center is devoted to issues of interest to current OPNET users. It includes User Forum Mailing Lists, FAQs, Contributed Models, Contributed Papers, Methodologies and Case Studies, OPNETWORK2003. OPNET Technologies Inc. provides this service to all users of OPNET. For users with a current OPNET maintenance agreement, several additional services are available in the Maintained User Area. These include notification of OPNET Product Logged Problems such as status reports, workarounds, and patch availability. You may also use our e-mail list interface to subscribe to a variety of OPNET related e-mail lists.

A username and password must be supplied to access these pages (authentication-capable browser required). OPNET users who have already been issued a username and password for use with the OPNET Technologies Inc. FTP server or Bulletin Board System may use the same username and password to access the maintained user services. OPNET users without authentication may request one from OPNET Technologies Inc. Technical Support.

  

Q11: How could I contact you?
 

Please go to Contact Us. You may write your query in Chinese.

 

 
 
 
 
 
 
 
 
 

 

 

 
  Copyright © 2007 OPNET Technologies, Inc. All Rights Reserved.   Site Map I Legal For more information, please email: info@meridian.com.sg