Note that there are some explanatory texts on larger screens.

plurals
  1. POIxLoad icConfigError: Cannot mix legacy and new-style network objects in a single script
    text
    copied!<p>I am using Ixload 5.10 Version and TCL 8.4.14. </p> <p>I do not have help support, so hopefully someone could help me out with this. Thanks a lot in advance.</p> <p>This is my code. Once I add ixNet....Plugin, TCL log file will show the error "Lib.Comon.ixConfig.ixConfigError:Cannot mix legacy and new-style network objects in a single script..."</p> <p>I don't know if there is any other package that I need to load or not? In my code, I have initialized these already.</p> <pre><code>package require statCollectorUtils global ixAppPluginManager $ixAppPluginManager load "HTTP" set clnt_network [::IxLoad new ixNetworkGroup $chassisChain] $clnt_network config \ -name "clnt_network" $clnt_network globalPlugins.clear set Filter [::IxLoad new ixNetFilterPlugin] # ixNet objects needs to be added in the list before they are configured! $clnt_network globalPlugins.appendItem -object $Filter\ $Filter config \ -name "Filter" set GratArp [::IxLoad new ixNetGratArpPlugin] # ixNet objects needs to be added in the list before they are configured! $clnt_network globalPlugins.appendItem -object $GratArp $GratArp config \ -enabled true \ -name "GratArp" set TCP [::IxLoad new ixNetTCPPlugin] # ixNet objects needs to be added in the list before they are configured! $clnt_network globalPlugins.appendItem -object $TCP $TCP config \ -tcp_tw_recycle true \ -tcp_keepalive_time 75 \ -tcp_keepalive_intvl 7200 \ -tcp_wmem_default 4096 \ -tcp_port_min 1024 \ -tcp_port_max 65535 \ -tcp_window_scaling false \ -name "TCP" \ -tcp_rmem_default 4096 </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload