BPEL 10.1.3 - TCP tunneling issue

Hi,
this my config:
SOA Suite 10.1.3
Jdeveloper 10.1.3 (with web browser and proxy set to null)
I don't understand how to configure obtunnel.bat to see sopa message between a webs ervice (deployed on localhost:80) and his parterlinks. This is what I did:
1. stop BPEL server
2. change obsetenv.bat:
set PROXY_SET=true
@REM Where has the JDK (supporting 1.4.1 or higher) been installed on
@REM this machine?
set JAVA_HOME=D:\oracle\SOASuite\jdk
if %PROXY_SET% == "true" goto set_proxy
set OB_JAVA_PROPERTIES=
goto end_set_proxy
:set_proxy
set OB_JAVA_PROPERTIES="-Dhttp.proxySet=true" "-Dhttp.proxyHost=localhost" "-Dhttp.proxyPort=1234" "-Dhttp.nonProxyHosts=[HTTP_NON_PROXY_HOSTS]"
:end_set_proxy
3. start BPEL server
4. change optSoapShortcut parameter to false
5. defining a Configuration Property in bpel.xml
<configurations>
<property name="localtion" encryption="plaintext">http://localhost:1234/orabpel/default/UtilisateurService</property>
</configurations>
6. deploy web service using Jdev
7. stop BPEL server
8. start obtunnel.bat with 2 listeners:
listen port # 1234
targer hostname 127.0.0.1
target port # 80
9. start BPEL server
but I don't see any message ... :(( what did I miss ?
Cyryl

Hi all,
can anyone please respond to my issue. Its sort of urgent.
thanks,

Similar Messages

  • SoapServerUrl variable in BPEL Admin for TCP tunneling

    Hi,
    I have read the BPEL Techincal note 1 to view SOAP messages by using TCP tunneling. It works great when you change the location in bpel.xml for the partnerlink. But soap-server-url property is not working for me.
    I was wondering if there is an easier way to see all BPEL operations rather than adding a location property to all partnerLinks in bpel.xml in all processes to change the port.
    I thougt I could get it with the soapServerUrl property in the BPEL Admin, but I think it is not working properly. Any help or comment is welcome.
    I changed the variable from http://myhost:9700 to http://myhost:2222 and restarted the server, just in case. In the BPEL Processes tab of BPEL Console I clicked Clear WSDL Cache.
    If now I go to the Dashboard, click my process, go to the WSDL tab, I get this:
    WSDL location:
    http://myhost:2222/orabpel/default/Buyer/1.0/Buyer?wsdl
    Endpoint location:
    http://myhost:2222/orabpel/default/Buyer/1.0
    This is exactly what I want. But there are two problems:
    - The WSDL link goes actually to 9700, only the text is changed. This is a minor problem.
    - The endpoint in the WSDL file is still going to 9700. So when I use the BPEL Console to run a new instance, it uses this information and does not go to 2222 port.
    So it looks like if the variable is just being used for some cases.
    Any help about changing the endpoint port for all BPEL proccesses would be appreciated.
    I am using the latest version and all patches.

    You can generate a plan for each instance.
    For example in build.xml add something like this:
    <target name="Generate_Deployment_Plans"
            depends="validateTask, compile, Generate_DEV, Generate_TEST, Generate_PROD"/>
        <target name="Generate_DEV">
            <generateplan planfile="DPlan_DEV.xml"
               verbose="true" overwrite="false" descfile="${process.dir}/bpel/bpel.xml"/>
        </target>
        <target name="Generate_TEST">
            <generateplan planfile="DPlan_TEST.xml"
               verbose="true" overwrite="false" descfile="${process.dir}/bpel/bpel.xml"/>
        </target>
        <target name="Generate_PROD">
            <generateplan planfile="DPlan_PROD.xml"
               verbose="true" overwrite="false" descfile="${process.dir}/bpel/bpel.xml"/>
        </target>Not sure if this is what you are asking for though.

  • Why does TCP tunneling remove http 503 response from async WS call?

    Hi all,
    I am facing a bit of a weird problem.
    I have developed and tested an asynchronous BPEL process which among other things invokes a 3rd party web service.
    It works fine in development environment.
    When I migrate to the customers test environment I get a http 503 error back to the BPEL process (only difference in the BPEL code is the endpoint to the WS).
    Trying to figure out what went wrong I used a TCP monitor to tunnel through. This solved the problem!
    So why does going through a TCP monitor running on the BPEL server help?
    Continuing with the TCP monitor in production is obviously not an option, so not only do I need to figure out why using a TCP mon helps, but also figure out how to fix the underlying issue.
    I should mention that I am using BPEL version 10.1.3.3, and that I have testet the connection between the BPEL server and the 3rd party web service and found no problem.
    Any help is much appreciated.
    Regards,
    Aagaard
    Edited by: Aagaard on Mar 23, 2009 9:48 AM
    In Metalink in "TCP Tunneling the Oracle BPEL Process Manager" (document id 283484.1) it is suggested to change the "opt-soap-shortcut" property in the "Manage BPEL domian" from false to true if you want to use TCP tunneling.
    I don't see this property in the BPEL console or in the domain.xml file found at $ORACLE_HOME/bpel/domains/<domain used>/config.
    Could this be part of the problem?
    The BPEL server in the customers test environment is a clone of the BPEL server in our development environment, so I don't see how this could be the problem.

    Hi,
    Status update: Accessing the remote web service from the BPEL server works fine if not done through BPEL.
    My current thinking is that the problem may be linked to port numbers and firewalls. Obviously, there is an opening in the firewall from my BPEL servers (installed on port 8888) and to the remote web service running on port 19313.
    However, sniffing at the connection between BPEL and the TCPMon it can be seen that BPEL is trying to make a connection in a range of ports in the 1400s (so far I have seen between 1454 and 1481).
    In the Oracle documentation at [http://download.oracle.com/docs/cd/B31017_01/core.1013/b28940/portnums.htm] there is a list of default ports.
    The 1400 range does not appear anywhere.
    So my thinking is that maybe the TCPMon goes through a static port, which is opened in the firewall, and BPEL is trying to go through a dynamic range which can get to the TCPMon but not to the remote service.
    Any comments, ideas or suggestions is most welcome.
    Regards,
    Aagaard
    PS: James - Thank you for the assistance. As always it was very helpful.
    Edited by: Aagaard on Mar 26, 2009 8:45 AM
    The 1400 range may have to do with wireshark sniffer tool ...
    So that might explain it.

  • Oracle 9i Web Services Quickstart Install TCP tunneling problem

    When I try to run the OTNGUIDGenerator example using the TCP Tunneling portion of the Oracle 9i Web Services Quickstart
    Install I get this in the From localhost8900 tunnel window:
    <?xml version='1.0' encoding='UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:getGUID xmlns:ns1="oracle.otn.ws.emarket.OTNGUIDGenerator" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    </ns1:getGUID>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I get this in the From 127.0.0.1:8888 window:
    HTTP/1.1 404 Not Found
    Date: Mon, 28 Oct 2002 20:38:06 GMT
    Server: Oracle9iAS (9.0.2.0.0) Containers for J2EE
    Content-Length: 171
    Connection: Close
    Content-Type: text/html
    <HTML><HEAD><TITLE>404 Not Found</TITLE></HEAD><BODY><H1>404 Not Found</H1>Resource /j2ee-web/oracle.otn.ws.emarket.OTNGUIDGenerator not found on this server</BODY></HTML>
    This is my webservices stub
    public class OTNGUIDGeneratorStub
    /** public String endpoint = "http://otn.oracle.com/ws/oracle.otn.ws.emarket.OTNGUIDGenerator"; */
    public String endpoint = "http://127.0.0.1:8900/j2ee-web/oracle.otn.ws.emarket.OTNGUIDGenerator";
    private OracleSOAPHTTPConnection m_httpConnection = null;
    public OTNGUIDGeneratorStub()
    System.setProperty("oracle.soap.transport.noHTTPClient", "true");
    m_httpConnection = new OracleSOAPHTTPConnection();
    Properties props = new Properties();
    /** props.put(OracleSOAPHTTPConnection.PROXY_AUTH_TYPE, "basic");
    props.put(OracleSOAPHTTPConnection.PROXY_HOST, "proxy.scott.af.mil");
    props.put(OracleSOAPHTTPConnection.PROXY_PORT, "375");
    props.put(OracleSOAPHTTPConnection.PROXY_USERNAME, "fowlerji");
    props.put(OracleSOAPHTTPConnection.PROXY_PASSWORD, "F1234567*g"); */
    m_httpConnection.setProperties(props);
    Not sure what to call the server - this works okay when I'm not using tunneling and using our proxy server??

    I think your problem is that you have a proxy user/password and the TCP Monitor (both the command line and built-in 9.0.3 version) do not support that - they only support specification of the proxy server itself :-(
    It is a feature request that I hope will make it into the late spring/early summer release of JDeveloper - I wrote it up as a request based on the number of folks who faced this issue with these tutorials.
    Mike.

  • TCP Tunnelling not working per BPEL Technical Note

    Hi,
    I am trying to follow note http://www.oracle.com/technology/products/ias/bpel/htdocs/orabpel_technotes.tn001.html.
    I have set ob env. When I am executing the tcpmon -- the following command -- I am getting an exception as shown below.
    Could someone please help.
    Thanks
    Shamik
    java -classpath %OB_CLASSPATH% orabpel.apache.axis.utils.tcpmon 1234 localhost 7777
    Exception in thread "main" java.lang.NoClassDefFoundError: orabpel/apache/axis/utils/tcpmon

    For 10.1.3.1, try
    "%JAVA_HOME%\bin\java" -classpath %OB_CLASSPATH% org.collaxa.thirdparty.apache.axis.utils.tcpmon 1234 localhost 8888
    or use developer prompt and go to ..\bin\obtunnel

  • Cisco ASA 5505 - IPsec Tunnel issue

    Issue with IPsec Child SA
    Hi,
    I have a site to site VPN tunnel setup with a Cisco ASA5505 and a Checkpoint Firewall. The version of software is 9.22. I am using IKEv2 for Phase 1 encryption. The following is my cisco asa configuration:
    hostname GARPR-COM1-WF01
    xlate per-session deny tcp any4 any4
    xlate per-session deny tcp any4 any6
    xlate per-session deny tcp any6 any4
    xlate per-session deny tcp any6 any6
    xlate per-session deny udp any4 any4 eq domain
    xlate per-session deny udp any4 any6 eq domain
    xlate per-session deny udp any6 any4 eq domain
    xlate per-session deny udp any6 any6 eq domain
    names
    interface Ethernet0/0
     description Failover Link
     switchport access vlan 950
    interface Ethernet0/1
     description Outside FW Link
     switchport access vlan 999
    interface Ethernet0/2
     description Inside FW Link
     switchport access vlan 998
    interface Ethernet0/3
     description Management Link
     switchport access vlan 6
    interface Ethernet0/4
     shutdown
    interface Ethernet0/5
     shutdown
    interface Ethernet0/6
     shutdown
    interface Ethernet0/7
     shutdown
    interface Vlan1
     no nameif
     no security-level
     no ip address
    interface Vlan6
     nameif management
     security-level 100
     ip address 10.65.1.20 255.255.255.240
    interface Vlan950
     description LAN Failover Interface
    interface Vlan998
     nameif inside
     security-level 100
     ip address 10.65.1.5 255.255.255.252
    interface Vlan999
     nameif outside
     security-level 0
     ip address ************* 255.255.255.248
    boot system disk0:/asa922-4-k8.bin
    ftp mode passive
    dns server-group DefaultDNS
     domain-name ***************
    object network North_American_LAN
     subnet 10.73.0.0 255.255.0.0
     description North American LAN
    object network Queretaro_LAN
     subnet 10.74.0.0 255.255.0.0
     description Queretaro_LAN
    object network Tor_LAN
     subnet 10.75.0.0 255.255.0.0
     description Tor LAN
    object network Mor_LAN
     subnet 10.76.0.0 255.255.0.0
     description Mor LAN
    object network Tus_LAN
     subnet 10.79.128.0 255.255.128.0
     description North American LAN
    object network Mtl_LAN
     subnet 10.88.0.0 255.255.0.0
     description Mtl LAN
    object network Wic_LAN
     subnet 10.90.0.0 255.254.0.0
     description Wic LAN
    object network Wic_LAN_172
     subnet 172.18.0.0 255.255.0.0
     description Wic Servers/Legacy Client LAN
    object network Mtl_LAN_172
     subnet 172.19.0.0 255.255.0.0
     description Mtl Servers/Legacy Client LAN
    object network Tor_LAN_172
     subnet 172.20.0.0 255.255.0.0
     description Tor Servers/Legacy Client LAN
    object network Bridge_LAN_172
     subnet 172.23.0.0 255.255.0.0
     description Bridge Servers/Legacy Client LAN
    object network Mtl_WLAN
     subnet 10.114.0.0 255.255.0.0
     description Mtl Wireless LAN
    object network Bel_WLAN
     subnet 10.115.0.0 255.255.0.0
     description Bel Wireless LAN
    object network Wic_WLAN
     subnet 10.116.0.0 255.255.0.0
     description Wic Wireless LAN
    object network Mtl_Infrastructure_10
     subnet 10.96.0.0 255.255.0.0
     description Mtl Infrastructre LAN
    object network BA_Small_Site_Blocks
     subnet 10.68.0.0 255.255.0.0
     description BA Small Sites Blocks
    object network Bel_LAN
     subnet 10.92.0.0 255.255.0.0
     description Bel LAN 10 Network
    object network LAN_172
     subnet 172.25.0.0 255.255.0.0
     description  LAN 172 Network
    object network Gar_LAN
     subnet 10.65.1.0 255.255.255.0
     description Gar LAN
    object network garpr-com1-wf01.net.aero.bombardier.net
     host **************
     description Garching Firewall
    object-group network BA_Sites
     description Internal Networks
     network-object object BA_Small_Site_Blocks
     network-object object Bel_LAN
     network-object object Bel_LAN_172
     network-object object Bel_WLAN
     network-object object Bridge_LAN_172
     network-object object Mtl_Infrastructure_10
     network-object object Mtl_LAN
     network-object object Mtl_LAN_172
     network-object object Mtl_WLAN
     network-object object Mor_LAN
     network-object object North_American_LAN
     network-object object Queretaro_LAN
     network-object object Tor_LAN
     network-object object Tor_LAN_172
     network-object object Tus_LAN
     network-object object Wic_LAN
     network-object object Wic_LAN_172
     network-object object Wic_WLAN
    access-list 101 extended permit ip object garpr-com1-wf01.net.aero.bombardier.net object Bel_LAN_172
    access-list 101 extended permit ip object Garching_LAN object-group BA_Sites
    pager lines 24
    logging enable
    logging timestamp
    logging buffered warnings
    logging trap informational
    logging asdm informational
    logging host outside 172.25.5.102
    mtu management 1500
    mtu inside 1500
    mtu outside 1500
    failover
    failover lan unit primary
    failover lan interface Failover_Link Vlan950
    failover polltime interface msec 500 holdtime 5
    failover key *****
    failover interface ip Failover_Link 192.168.124.1 255.255.255.0 standby 192.168.124.2
    icmp unreachable rate-limit 1 burst-size 1
    asdm image disk0:/asdm-731-101.bin
    asdm history enable
    arp timeout 14400
    no arp permit-nonconnected
    nat (inside,outside) source static Gar_LAN Gar_LAN destination static BA_Sites BA_Sites no-proxy-arp route-lookup
    route outside 0.0.0.0 0.0.0.0 ************* 1
    route inside 10.65.1.0 255.255.255.255 10.65.1.6 1
    route inside 10.65.1.16 255.255.255.240 10.65.1.6 1
    route inside 10.65.1.32 255.255.255.240 10.65.1.6 1
    route inside 10.65.1.48 255.255.255.240 10.65.1.6 1
    route inside 10.65.1.64 255.255.255.240 10.65.1.6 1
    route inside 10.65.1.128 255.255.255.128 10.65.1.6 1
    timeout xlate 3:00:00
    timeout pat-xlate 0:00:30
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    aaa-server TACACS+ protocol tacacs+
    aaa-server RADIUS protocol radius
    user-identity default-domain LOCAL
    aaa authentication ssh console LOCAL
    aaa authentication telnet console LOCAL
    http server enable
    http 10.65.1.0 255.255.255.0 inside
    http 172.25.5.0 255.255.255.0 inside
    http 10.65.1.21 255.255.255.255 management
    snmp-server host inside 172.25.49.0 community ***** udp-port 161
    snmp-server host outside 172.25.49.0 community *****
    snmp-server host inside 172.25.5.101 community ***** udp-port 161
    snmp-server host outside 172.25.5.101 community *****
    snmp-server host inside 172.25.81.88 poll community *****
    snmp-server host outside 172.25.81.88 poll community *****
    snmp-server location:
    snmp-server contact
    snmp-server community *****
    snmp-server enable traps syslog
    crypto ipsec ikev2 ipsec-proposal aes256
     protocol esp encryption aes-256
     protocol esp integrity sha-1
    crypto ipsec security-association lifetime seconds 3600
    crypto ipsec security-association pmtu-aging infinite
    crypto map GARCH 10 match address 101
    crypto map GARCH 10 set pfs group19
    crypto map GARCH 10 set peer *******************
    crypto map GARCH 10 set ikev2 ipsec-proposal aes256
    crypto map GARCH 10 set security-association lifetime seconds 3600
    crypto map GARCH interface outside
    crypto ca trustpool policy
    no crypto isakmp nat-traversal
    crypto ikev2 policy 10
     encryption aes-256
     integrity sha256
     group 19
     prf sha256
     lifetime seconds 86400
    crypto ikev2 enable outside
    telnet 10.65.1.6 255.255.255.255 inside
    telnet timeout 5
    ssh stricthostkeycheck
    ssh 172.25.5.0 255.255.255.0 inside
    ssh 172.19.9.49 255.255.255.255 inside
    ssh 172.25.5.0 255.255.255.0 outside
    ssh 172.19.9.49 255.255.255.255 outside
    ssh timeout 30
    ssh version 2
    ssh key-exchange group dh-group1-sha1
    console timeout 30
    management-access inside
    dhcprelay server 172.25.81.1 outside
    dhcprelay server 172.25.49.1 outside
    dhcprelay enable inside
    dhcprelay timeout 60
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    ntp server 172.19.109.41
    ntp server 172.19.109.42
    ntp server 172.19.9.49 source outside
    tunnel-group ********* type ipsec-l2l
    tunnel-group ********* ipsec-attributes
     ikev2 remote-authentication pre-shared-key *****
     ikev2 local-authentication pre-shared-key *****
    class-map inspection_default
     match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
     parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
     class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect ip-options
      inspect netbios
      inspect rsh
      inspect rtsp
      inspect skinny
      inspect esmtp
      inspect sqlnet
      inspect sunrpc
      inspect tftp
      inspect sip
      inspect xdmcp
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    call-home
     profile CiscoTAC-1
      no active
      destination address http https://tools.cisco.com/its/service/oddce/services/DDCEService
      destination address email [email protected]
      destination transport-method http
      subscribe-to-alert-group diagnostic
      subscribe-to-alert-group environment
      subscribe-to-alert-group inventory periodic monthly
      subscribe-to-alert-group configuration periodic monthly
      subscribe-to-alert-group telemetry periodic daily
    Cryptochecksum:25ad9bf6db66a31e840ad96f49cd7e37
    : end
    I believe when a VPN tunnel is setup there should be one Child sa per subnet. The internal network of 10.65.1.0/24 should be setup with a child sa to the networks that were specified above depending on if there is traffic destined for them. What I am seeing is multiple child sa setup for the same subnet like the example below:
    GARPR-COM1-WF01# sh crypto ikev2 sa | i 172.19
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
              remote selector 172.19.0.0/0 - 172.19.255.255/65535
    where for destination network 10.92.0.0/16 there is only one child sa:
    GARPR-COM1-WF01# sh crypto ikev2 sa | i 10.92
              remote selector 10.92.0.0/0 - 10.92.255.255/6553
    Should this be the case or does anyone have any idea why there is multiple child sa setup for the same subnet?
    Thanks
    Jonathan

    Hi there,
    I had same issue with PIX 506E and it was not even a circuit issue and I got ride of it and problem got fixed with PIX515E
    I don't know, the device is too old to stay alive.
    thanks

  • Site2Site Tunnel issue PSEC(epa_des_crypt): decrypted packet failed SA identity check

    Hi,
    I have a slight issue I'm having some problems resolving..
    The scenario is as follows;
    I have an external provider which connects to me via VPN to a Juniper SSG firewall, that works fine.
    I then have an external site, which does NOT reside in my MPLS cloud, so I have to deploy IPSec via Internet to reach it.
    That also works fine and I have multiple SA's running on that site with no issues or problems.
    The external provider has a small network device deployed on the external site which monitor cooling values in one of our warehouses.
    The external site which is connect via IPSEC has a Cisco 1921 and a numerous Cisco 3550 deployed.
    The VLAN for the cooling provider is vlan 150 and is setup with 10.150.4.0/24 where .1 is the def gw and .10 is the cooling monitor device.
    The external provider's servers are located within 192.168.220.0/24 subnet.
    As of right now, we can reach the Cisco 1921 through the whole IPsec tunnel from 192.168.220.182 with all services, ping, telnet whatnot, but we are unable to ping the cooling device from 192.168.220.0/24.
    However from the Cisco 1921, we can ping both 192.168.220.0/24 and the locally connected 10.150.4.10
    So basicly it seems to be the last bit when the traffic goes through the 1921 and to the switch where it fails and I can't for the life of me figure out why.
    Network diagram attached.. any ideas?
    This is the 1921 config:
    no service pad
    service tcp-keepalives-in
    service tcp-keepalives-out
    service timestamps debug datetime msec localtime
    service timestamps log datetime msec localtime
    service password-encryption
    hostname bergen-vpn-gw
    boot-start-marker
    boot system flash flash:c1841-adventerprisek9-mz.124-25d.bin
    boot-end-marker
    logging buffered 50000
    aaa new-model
    aaa authentication login default local
    aaa authentication enable default enable
    aaa session-id common
    clock timezone CET 1
    clock summer-time CET recurring last Sun Mar 2:00 last Sun Oct 3:00
    no ipv6 cef
    no ip source-route
    ip cef
    no ip bootp server
    no ip domain lookup
    ip domain name xxxxx
    multilink bundle-name authenticated
    license udi pid CISCO1921/K9 sn FCZ1508C1P4
    license boot module c1900 technology-package securityk9
    license boot module c1900 technology-package datak9
    vtp mode client
    redundancy
    crypto isakmp policy 10
    encr 3des
    authentication pre-share
    group 2
    crypto isakmp key harakiri address 1.2.3.4
    crypto ipsec transform-set 3DES-SHA esp-3des esp-sha-hmac
    crypto map VPN 10 ipsec-isakmp
    set peer 1.2.3.4
    set transform-set 3DES-SHA
    match address VPN
    interface GigabitEthernet0/0
    no ip address
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    no ip route-cache cef
    no ip route-cache
    duplex auto
    speed auto
    interface GigabitEthernet0/0.99
    description *** Test VLAN To be removed ***
    encapsulation dot1Q 99
    ip address 10.90.90.1 255.255.255.0
    no ip route-cache
    interface GigabitEthernet0/0.112
    encapsulation dot1Q 112
    ip address 192.168.112.1 255.255.255.0
    ip helper-address 172.30.1.223
    no ip route-cache
    interface GigabitEthernet0/0.150
    encapsulation dot1Q 150
    ip address 10.150.4.1 255.255.255.0
    no ip redirects
    no ip proxy-arp
    no ip route-cache
    interface GigabitEthernet0/0.178
    encapsulation dot1Q 178
    ip address 192.168.178.1 255.255.255.0
    ip helper-address 172.30.1.223
    no ip redirects
    no ip proxy-arp
    no ip route-cache
    interface GigabitEthernet0/0.999
    encapsulation dot1Q 999
    no ip route-cache
    interface GigabitEthernet0/1
    ip address 1.2.3.4 255.255.255.252
    no ip redirects
    no ip proxy-arp
    no ip route-cache cef
    no ip route-cache
    duplex auto
    speed auto
    crypto map VPN
    interface FastEthernet0/0/0
    switchport access vlan 99
    interface FastEthernet0/0/1
    interface FastEthernet0/0/2
    interface FastEthernet0/0/3
    interface Vlan1
    no ip address
    ip forward-protocol nd
    no ip http server
    no ip http secure-server
    ip route 0.0.0.0 0.0.0.0 85.200.203.29
    ip access-list extended VPN
    permit ip 10.90.90.0 0.0.0.255 172.30.1.0 0.0.0.255
    permit ip 10.90.90.0 0.0.0.255 172.22.0.0 0.0.255.255
    permit ip 10.90.90.0 0.0.0.255 172.18.5.0 0.0.0.255
    permit ip 10.90.90.0 0.0.0.255 10.50.0.0 0.0.255.255
    permit ip 192.168.112.0 0.0.0.255 172.30.1.0 0.0.0.255
    permit ip 192.168.112.0 0.0.0.255 172.22.0.0 0.0.255.255
    permit ip 192.168.112.0 0.0.0.255 172.18.5.0 0.0.0.255
    permit ip 192.168.112.0 0.0.0.255 10.50.0.0 0.0.255.255
    permit ip 192.168.178.0 0.0.0.255 172.30.1.0 0.0.0.255
    permit ip 192.168.178.0 0.0.0.255 172.22.0.0 0.0.255.255
    permit ip 192.168.178.0 0.0.0.255 172.18.5.0 0.0.0.255
    permit ip 192.168.178.0 0.0.0.255 10.50.0.0 0.0.255.255
    permit ip 192.168.112.0 0.0.0.255 172.30.240.0 0.0.0.255
    permit ip 192.168.178.0 0.0.0.255 172.30.240.0 0.0.0.255
    permit ip 192.168.112.0 0.0.0.255 10.70.0.0 0.0.0.255
    permit ip 192.168.178.0 0.0.0.255 10.70.0.0 0.0.0.255
    permit ip 10.150.4.0 0.0.0.255 192.168.220.0 0.0.0.255 log
    ip sla 1
    icmp-echo 172.30.1.223 source-interface GigabitEthernet0/0.178
    threshold 20
    frequency 120
    ip sla schedule 1 start-time now
    ip sla 2
    icmp-echo 10.50.1.200 source-interface GigabitEthernet0/0.178
    threshold 20
    frequency 120
    ip sla schedule 2 start-time now
    ip sla 3
    icmp-echo 172.18.5.121 source-interface GigabitEthernet0/0.178
    threshold 20
    frequency 120
    ip sla schedule 3 start-time now
    ip sla 4
    icmp-echo 172.22.0.140 source-interface GigabitEthernet0/0.178
    threshold 20
    frequency 120
    ip sla schedule 4 start-time now
    ip sla 5
    icmp-echo 172.30.240.40 source-interface GigabitEthernet0/0.178
    threshold 20
    frequency 120
    ip sla schedule 5 start-time now
    ip sla 6
    icmp-echo 10.70.0.200 source-interface GigabitEthernet0/0.178
    threshold 20
    frequency 120
    ip sla schedule 6 start-time now
    cdp source-interface GigabitEthernet0/0.112
    snmp-server community bamacomro RO
    cdp source-interface GigabitEthernet0/0.112
    snmp-server community bamacomro RO
    snmp-server community bamacomrw RW
    control-plane
    banner motd ^CCC-----------------------------------------------------------------------------
    This system is solely for the use of authorised users for official purposes.
    You have no expectation of privacy in its use and to ensure that the system
    is functioning properly, individuals using this computer system are subject
    to having all their activities monitored and recorded by system personell.
    Use of this system evidence an express consent to such monitoring and
    agreement that if such monitoring reveals evidence of possible abuse or
    criminal activity, system personell may provide the result of such
    monitoring to appropiate officials.
    -----------------------------------------------------------------------------^C
    line con 0
    exec-timeout 5 0
    logging synchronous
    line aux 0
    line vty 0 4
    access-class telnet in
    exec-timeout 180 0
    logging synchronous
    transport input telnet ssh
    line vty 5 15
    access-class telnet in
    exec-timeout 180 0
    password 7 094F471A1A0A
    logging synchronous
    transport input telnet ssh
    scheduler allocate 20000 1000
    end

    I had that issue 1 year go
    "decrypted packet failed SA identity check" means that we have decrypted a traffic that does not match the proxy ID negotiated
    Juniper is violating RFC4301. there is nothing we can do against RFC violation
    As mentioned in Section 4.4.1, "The Security Policy Database (SPD)",
    the SPD (or associated caches) MUST be consulted during the
    processing of all traffic that crosses the IPsec protection boundary,
    including IPsec management traffic.  If no policy is found in the SPD
    that matches a packet (for either inbound or outbound traffic), the
    packet MUST be discarded.
    I know JNPR can do 2 vpn modes. There is one where we could use a VTI instead of a crypto map on the Cisco side. That was the solution to the problem we had.
    Cheers,

  • BPEL and Content DB's  performance issue

    Hello,
    We are using an integration between BPEL and ContentDB, we do have a workflow configuration set on a particular folder where a workflow is triggered on the "Create" event. When BPEL does receive this event, a webservice is called afterwards. This webservice involves a call against the ContentDB API (for instance, we create an upload operation).
    Everything is fine when a few documents are handled, but the system fails when more than 100 documents are created.
    We figured out that instead of having one instance of the workflow running, we are actually having 100 instances of the workflow running concurrently...
    So we thought that tuning the application tier would have resolved the issue. But we are still stucked because we hit system limitations (OC4J_CONTENT jvm Xmax sizing increased from 256 to 512 Mo)
    Is there a way to setup contentdb to make it triggers WF operation progressively (using ramp up or queueing ?).
    Cheers,

    Assuming your BPEL processes are connecting to Content DB using Java exec call-out blocks, you could have some of common FDK (ManagersFactory) Web Service session pool - and essentially block until a session is released/made available. This would throttle the incoming load from BPEL on the OC4J_Content instance.
    -Matt.

  • TCP STREAMING ISSUE? Please help

    HI 
    Iam posting here as my last resort to see if one of the many experts can resolve the anomaly I have on my BT Infinity option 2 totally unlimted package.
    The issue is streaming my slingbox a device which in the past has been sold in the BT shop .The slingbox is located abroad and  I have had BT infinity a few years now.
    when I first changed to  BT I first had this problem connecting to the slingbox ,it used to buffers slightly  and the onscreen application give stats on the streaming speed which when streaming,The stats would show the speed to be going at 2.5meg speed and then have sudden drops to 1meg which interupted viewing now this did not happen all the time but was intermittent. At this point it is very relevent to point out all other appliations have  worked without any noticble issues.
    Iam bringing this issue foward now because I have recently changed my work/shift patterns so I have weekends off and find myself at home on more evenings and therefore using this device more now from my Home broadband connection what I have noticed is that at he times Iam home the device not only has sudden drops but also struggles with the streaming speed 900kbps like there is restrictions on the type of data.
    When I do the bt wholesale speed test my stats are Brilliant 73meg down      16meg up on further diagnostics the line ip profile is 75 meg and it all looks good.
    However my BT infinity struggles with this application and struggles with streaming tcp on my slingbox which only needs 2.5meg to work flawlessly.
    I have regulary connected to my slingbox through different ISP be it  where I worked {BE BROADBAND} .my freinds house {sky fibre optic} and my brothers house who is on adsl2 with o2 broadband and he still is and has not changed quite yet to the sky infestrucure because he requires static ip. At these premises the slingbox streaming works faultlessly.
    That proves at least one thing that the problem does not reside at the source end.
    So over the last month or so that has led me to investigate my connection and what could be the possible causes of this problem being with my connection only.
    I have changed over from my BT router to top of the range LINKSYS 6700 changed wifi channels switched off wifi , connected 3 different laptops /pc via ethernet, disconnected all other devices etc and connected 1 PC at  a time had a new connection to my DP pole 14 months ago aswell as new internal wireing done by openreach. And the problems still persists more so at the evening and weekends.
    The last thing I tried was Wireshark which gives information on whatever data is going through the system. I  ran the application on my brothers connection using slingbox and under the heading PROTOCOL it shows as TCP.
    When i use wireshark at my connection under the same heading PROTOCOL its says HTTP and it says under the heading  INFO continuation or non HTTP traffic.
     I understand there maybe many under lining factors to why the application does not perform to the desired quality distance from cab , line etc but the reality is the device performs as it should do everywhere i have tried and my brothers who lives a few streets away laughs at me that he is on adsl connection and pays half the cost for his broadband but has alll his services working without issues. 
    I have rang BT technical a few times and although the BT tech team have tried to help I have gone round in circles in basically restarting router or modem.
    I do feel that maybe some sort of settings change from BT side will resolve this
    My contract is due to end with BT at the end of March 2014 and with regret if this issue is not corrected then unfortunetly I will have to change ISP provider.
    Thanks

    Hi I followed tha link to GLASHOST and when you try to test it comes back that there has been a error ?
    Is there another website I could try?
    Also how do I contact the MODS, regardless to the website not allowing me to test, at certain times (evening) there is definately throttling occuring or some setting on my line is causing this issue ,Iam sorry but tried to phone the TECH team but apart from power down modem or router there has been no effort made to try and resolve the problem.
    I need some one at BT with expert experiance and Know how to look into this thoroughly.
    I phoned customer options team yesterday and requested my MAC as I have less thn 1 month contract remaining,however  I  do not want to leave BT its a repitable company that has been trading for many years and its time that they showed that to me. do they care if I LEAVE?

  • WLC 5508 tunneling issue

    Hi,
    I have a WLC 5508 connected in a hub and spoke topology. The WLC is located at the hub which is the main office. In one of the remote spoke locations I have five Access Points that are connected to the local LAN and the model for the APs is AIR-CAP3602I-E-K9. The APs are all connected to access ports on the switch in vlan 1. I have two WLAN configured on the controller. I have two interfaces configured on the controller. The management and the guest interface. WLAN 1 is associated with the management interface. In the WLAN 1 advanced setting the flex local switching option is enabled. WLAN 2 is associated with the guest interface and this interface is tunneling vlan 248 the guest vlan. The problem I am having is that the devices can not communicate with each other if they are connected to the wireless connection WLAN 2 which is the tunneled vlan.
    Example: The client would like to be able to connect his ipad to the apple tv for presentation. If I connect both devices to the WLAN 1 which is using flex local switching option they can communicate with no problem, but if the devices are connected to WLAN 2 the guest vlan they can't communicate with each other. Is it possible to get this to also work on WLAN 2 ?
    Note: Both WLAN types are WLAN and P2P Blocking Action is set to default (disabled).
    Does any one have any ideas what could be causing my issue?
    Thanks in advance for your help,

    Well since your talking about Apple TV, you need to look at this reference guide for Apple's bonjour. This will explain how to get it to work and the limitation when an AP is in local or FlexConnect mode. The bonjour just doesn't work as people think it should because they can get it to work with a linksys AP.
    http://www.cisco.com/en/US/products/hw/wireless/ps4570/products_tech_note09186a0080bb1d7c.shtml
    Sent from Cisco Technical Support iPhone App

  • Using TCP Tunnel to examine SOAP messages to an external web service

    I am trying to examine the SOAP communication between my BPEL flow and an external webservice with WSDL at:
    http://www.webservicex.net/CurrencyConvertor.asmx?WSDL
    How should I modify the deployment descriptor for my flow (bpel.xml), to add a "location" property to override the endpoint of this external service, so I can see the the messages exchanged through the tunnel.
    Thanks and Best Regards.
    Jaidev

    I've changed the port number to 1234 as defaulted in obtunnel in a client program
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="worklistClient" src="worklistClient.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="client">
    <property name="wsdlLocation">worklistClient.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="PartnerLink_1">
    <property name="wsdlLocation">http://wzscqz05.....com:1234/orabpel/test/BPELWorkList/BPELWorkList?wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>

  • TCP/IP issues with OS v. 4.6

    Greetings, all.
    Just got my 8900 last night, and so far I'm very impressed indeed. Most of the applications that I've needed have been immediately and easily available, the handset itself is intuitive and easy to use - a great n00b experience all 'round. My problem is that I'm trying to get some third-party SSH, FTP, and SFTP clients working properly. I'm getting tunneling exceptions, which is apparently caused by an incorrectly configured APN.
    I tried to change the APN settings as per instructions here (my carrier is Cincinnati Bell). Unfortunately, something seems to have changed between the article's publishing time and the current OS revision: I am no longer able to specify gateway IP or port. While I can provide the APN's url and a username and password, that doesn't seem to be sufficient to fix my tunneling problems.
    TL;DR: This application is saying "Session error; Writer: tunnel failed". This is apparently caused, as per here, by incorrectly configured connection details. The recommended solutions page here points me to here, which tells me to do something that I cannot. For one thing, Options->TCP appears to have been replaced with Options->Advanced Options->TCP/IP, and seems to have had some functionality removed. The recommended actions caused no change in the application's behavior.
    Ideas? Any help would be greatly appreciated.
    Many thanks,
    Chris Akins
    Solved!
    Go to Solution.

    ...gremlins. That's the only explanation I can think of. An hour and a half after I changed the APN settings, it fixed itself. I guess there's a bit of lag somewhere in the system somewhere.
    Regardless, it works now, and thanks for the advice. I'd not found the BTSC earlier; thanks much for pointing me at it. And I do believe I might hang around. It seems a friendly place.
    -Chris

  • TE tunnel issues between IOS and IOS-XR

    Hi Guys
    I have a situation. The scenario (see the attached diagram) has to PE01 (IOS) connecting via a port-channel to P01 (IOS-XR), turn P01 connect to PE02 (IOS-XR). So we've configured a pseudowire between PE01 and PE02, this works fine! then we've configured a TE tunnel between PE01 and PE02, but when we chose the TE tunnel as preferred path for the PW, happens the following:
    PC-A mac address appears on PE02 mac address table, however PC-B mac address doesn't appears on PE01 mac address table, so there is not connectivity between PC's at all.
    It seems like the TE tunnel is causing some issue (thought TE tunnel status is okay at all), and the problem seems to be between PE01 and P01, when we take the TE tunnel from the PW preferred path, everything works fine! I'm not sure if this problem is caused by the port-channel too.
    I've been looking for some software bugs in IOS 12.2(33)SRE6 and IOS-XR 4.3.1 but there is not such.
    Anyone of you had this problem as well?
    Marcelo

    Hello.
    Did you try ping inside vc between PE devices?
    Could you provide relevant configuration from PE1,P,PE2 routers?
    And the output you got during troubleshooting?

  • FWSM on 6500 TCP connection issues after crash on primary

    I'm experiencing a rather strange issue that has me stumped.
    We are running an FWSM on a 6509 with a SUP720. Firmware 3.2(18), in MultiContext Routed Mode, with shared MSFC.
    Everything runs fine on this baby most of them time, however occasionally without warning and with no specific pattern the Primary node will fail (as in completely stop responding) and the secondary will takover as active.
    Two get the primary up agian, I reset the hw-module and then no failover active on the secondary to return the primary as active. However, after this event, I start to experience strange issues with connectivity. Certain TCP src dst combinations will just not work. Take the following example:
    A TCP/1433 connection from Inside IP: 10.3.3.196 to outside IP: 10.252.20.63, logs look like this:
    2012-08-07 13:43:13:0868          + 13435          2012-08-07 13:43:09     Local5.Info     192.168.2.7     Aug 07 2012 11:31:19: %FWSM-6-302013: Built outbound TCP connection 145674175523995444 for servers:10.3.3.196/64112 (10.3.3.196/64112) to outside:10.252.20.63/1433 (10.252.20.63/1433)
    2012-08-07 13:43:13:0868          + 13436          2012-08-07 13:43:09     Local5.Info     192.168.2.7     Aug 07 2012 11:31:19: %FWSM-6-302014: Teardown TCP connection 145674175523995444 for servers:10.3.3.196/64112 to outside:10.252.20.63/1433 duration 0:00:00 bytes 128 TCP Reset-O
    2012-08-07 13:43:13:0868          + 13526          2012-08-07 13:43:09     Local5.Info     192.168.2.7     Aug 07 2012 11:31:19: %FWSM-6-106028: Deny TCP (Connection marked for Deletion) from 10.3.3.196/64112 to 10.252.20.63/1433 flags SYN  on interface servers
    2012-08-07 13:43:13:0875          + 13670          2012-08-07 13:43:10     Local5.Info     192.168.2.7     Aug 07 2012 11:31:20: %FWSM-6-302013: Built outbound TCP connection 145674175523995445 for servers:10.3.3.196/64112 (10.3.3.196/64112) to outside:10.252.20.63/1433 (10.252.20.63/1433)
    2012-08-07 13:43:13:0875          + 13671          2012-08-07 13:43:10     Local5.Info     192.168.2.7     Aug 07 2012 11:31:20: %FWSM-6-302014: Teardown TCP connection 145674175523995445 for servers:10.3.3.196/64112 to outside:10.252.20.63/1433 duration 0:00:00 bytes 124 TCP Reset-O
    However I create a specific ACL on the upstream routers interface, to see if I get any matches and the traffic is not even leaving the 6509. I can however ping the remote device without any issues. And I can confirm that the xlate has been built.
    This connection was working fine prior to the crash, and the ACL rules are correct and do allow the connection on both the local FWSM and the remote firewall.
    Currently my only resolution is to  reboot the FWSM on both nodes at the same time so that we have a complete fresh start. This is not ideal!
    Anyone know of issues like this? Any suggestions for workarounds or perhaps ways to troubleshoot the reason for the crash?
    Thanks!
    Craig

    Hi Bro
    Perhaps, this could be a hardware related issue concerning your Primary FWSM. However, before we can conclude that, could you upgrade your FWSM to the latest image v4.1.7?

  • VPN problems..  Cant connect due to tunneling issues.

    I cant log into my company intranet using my VPN..  other people at my company have no problem using their mac, but I cant seem to get in
    I get this error.
    Network Connect cannot establish a secure session.  Network Connect cannot start the tunneling service. See the Log Viewer for more information.
    Here are the logs if anyone knows what they mean and can help it would be great.
    2011-05-26 17:06:06.204 ncproxyd-admintool[13313] config.info Removing key "ncproxyd_saved_routes" from the persistent store (config.cpp:273)
    2011-05-26 17:06:06.204 ncproxyd-admintool[13313] NCAdminHelper.info removing ncproxyd_saved_routes (NCAdminHelper.cpp:1020)
    2011-05-26 17:06:06.204 ncproxyd-admintool[13313] NCAdminHelper.warn restore_dns_configuration: failed to rename /etc/hosts.bak to /etc/hosts: No such file or directory (NCAdminHelper.cpp:810)
    2011-05-26 17:06:06.214 Network Connect[13291] DSIPC.para Recevied message bytes:  (186) <0><0><0><ba><81>$<9b><dd>&\<11><18><b><4><e0><cd>$<f4><da>2<e3>H<a1><95><df><a 5><7f><17>><9><9f>b<cd>I4<ae><ea>v<fe><81><a6><dd>D<7f><aa>~|G<b6>mV$<a>'u<f0>=< a>Nil<d5>r~n<92><6>=A<e7>#<c5><da>A<9f>O<c3>p<82>E<d><e8><e6>b<fb><15>-<f5><9d>< e9><fa><5><e6>1<f5><9a><fb><a8><d9>m<e7>PmZ<a6><98>I<ee>MP<7f><d1><92><12><9f>30 <dd>|<eb> <b4>X<aa><ce>o<88>l[b<2><d8>6<b7>.K<ba><9c><97><96><7f>]<b3>J<83><eb>.<c><b5><< a><a>eH<a2><b9><12><99><9c><bb><eb>D<bd>|0&<ab>k<fc>`<13><af>6<9d><cf>(T<9d><8d> <e5><fe>7<8f>r<fb> (ipc.cpp:727)
    2011-06-02 13:50:52.231 ../../webserver/:093 [        Thread-9]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:50:52.980 ../../webserver/:100 [        Thread-9]     [RuntimeExec] Process ID = java.lang.UNIXProcess@4d8f9b75
    2011-06-02 13:50:54.012 ../../webserver/:141 [        Thread-9]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:50:54.013 ../../webserver/:166 [        Thread-9]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@4d8f9b75] outputStream=[empty -null output stream-] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:50:54.013)[        Thread-9] Checking to see if the application is already running
    2011-06-02 13:50:54.013 ../../webserver/:093 [        Thread-9]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xaco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:50:54.041 ../../webserver/:100 [        Thread-9]     [RuntimeExec] Process ID = java.lang.UNIXProcess@10d4f27
    2011-06-02 13:50:54.214 ../../webserver/:141 [        Thread-9]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:50:54.216 ../../webserver/:166 [        Thread-9]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@10d4f27] outputStream=[empty -null output stream-] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:50:54.216)[        Thread-9] The application is NOT already running
    NCAppInstallImpl:000 (06/02 13:50:54.216)[        Thread-9] Attempting to launch the application (mode 1)
    NCAppInstallImpl:000 (06/02 13:50:54.219)[        Thread-9] Running this command: /Applications/Network Connect.app/Contents/MacOS/Network Connect -NCLaunchType 1 -AppleLanguages ( en )
    NCAppInstallImpl:000 (06/02 13:50:54.283)[        Thread-9] Pushing parameter [ProductVersion=14619] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [SystemVersion=6.4.0] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [action=install] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [autolaunch=1] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [cert_md5=d0ba5f2839b732e6972d55ea9e6c40e6] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [dns-suffix=adt.com] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [enable_logging=1] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [enable_logupload=1] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [internal-proxy-config=no] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [ivehost=go.adt.com] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [launch_url=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [linux_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [linux_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [locale=en] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [mac_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [mac_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [ncp_read_timeout=120] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [redir_url=/dana/home/index.cgi] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [redir_win=Please_Wait7819] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [signin_url=/] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [switch-dns-search-order=enabled] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [uninstall_on_quit=0] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [upgradeMode=2] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [win_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [win_skip_start_script=0] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [win_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [=null] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [cookies=<hidden>] to the app
    DSAppControlThre:000 (06/02 13:50:54.290)[        Thread-9] Checking to see if the application is already running
    2011-06-02 13:50:54.290 ../../webserver/:093 [        Thread-9]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:50:54.324 ../../webserver/:100 [        Thread-9]     [RuntimeExec] Process ID = java.lang.UNIXProcess@56b61c3
    2011-06-02 13:50:54.330 ../../webserver/:045 [       Thread-15]     [RuntimeExec] Result [22538]
    2011-06-02 13:50:54.332 ../../webserver/:141 [        Thread-9]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:50:54.333 ../../webserver/:166 [        Thread-9]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@56b61c3] outputStream=[22538] statusStream=[empty -null status stream-]
    NCAppController.:000 (06/02 13:50:54.333)[        Thread-9] Starting quit sequence...
    NCAppController.:000 (06/02 13:50:54.333)[        Thread-9] Cleaning up
    NCAppController.:000 (06/02 13:50:54.333)[        Thread-9] doQuit trying to load /dana/home/index.cgi
    NCAppController.:000 (06/02 13:50:54.333)[        Thread-9] Loading https://go.adt.com/dana/home/index.cgi in current window
    NCAppController.:000 (06/02 13:51:16.724)[applet-NCAppController.class] Entering NCAppController.init() on Thu Jun 02 13:51:16 PDT 2011
    NCAppController.:000 (06/02 13:51:16.724)[applet-NCAppController.class] New NCAppController session release [6.4.0]
    NCAppController.:000 (06/02 13:51:16.724)[applet-NCAppController.class] Build number [14619]
    NCAppController.:000 (06/02 13:51:16.766)[applet-NCAppController.class] This host needs a i386 binary
    NCAppController.:000 (06/02 13:51:16.833)[applet-NCAppController.class] Param ProductVersion=14619
    NCAppController.:000 (06/02 13:51:16.833)[applet-NCAppController.class] Param SystemVersion=6.4.0
    NCAppController.:000 (06/02 13:51:16.833)[applet-NCAppController.class] Param action=install
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param autolaunch=0
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param cert_md5=d0ba5f2839b732e6972d55ea9e6c40e6
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param dns-suffix=adt.com
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param enable_logging=1
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param enable_logupload=1
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param internal-proxy-config=no
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param ivehost=go.adt.com
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param launch_url=
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param linux_end_script=
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param linux_start_script=
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param locale=en
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param mac_end_script=
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param mac_start_script=
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param ncp_read_timeout=120
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param redir_url=/dana/home/starter.cgi?startpageonly=1
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param redir_win=Please_Wait7819
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param signin_url=/
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param switch-dns-search-order=enabled
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param uninstall_on_quit=0
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param upgradeMode=2
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param win_end_script=
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param win_skip_start_script=0
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param win_start_script=
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param =null
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param cookies=<hidden>
    DSAppControlThre:000 (06/02 13:51:16.841)[       Thread-21] Beginning install...
    NCAppInstallImpl:000 (06/02 13:51:16.841)[       Thread-21] Checking installed version
    NCAppInstallImpl:000 (06/02 13:51:16.911)[       Thread-21] Version on disk is 14619
    NCAppInstallImpl:000 (06/02 13:51:16.911)[       Thread-21] This version is 14619
    NCAppInstallImpl:000 (06/02 13:51:16.911)[       Thread-21] Checking if correct locale is installed
    DSAppControlThre:000 (06/02 13:51:16.912)[       Thread-21] Checking to see if the application is already running
    2011-06-02 13:51:10.387 Network Connect[22538] NCController.info -applicationDidFinishLaunching: Network Connect 6.4.0 (14619)/Version 10.6.6 (Build 10J567) starting (NCController.m:98)
    2011-06-02 13:51:10.721 Network Connect[22538] NCController.info -applicationDidFinishLaunching: launched from applet/application launcher (launchType: 1), waiting for parameters (NCController.m:133)
    2011-06-02 13:51:10.762 Network Connect[22538] DSIPCConnection.info -_clearIPCBuffer: Clearing the IPC buffer (DSIPCConnection.mm:526)
    2011-06-02 13:51:11.386 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter internal-proxy-config = "no" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received internal-proxy-config = no (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter ivehost = "go.adt.com" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.info -ipc:appletSetIVEParameter:: applet says to connect to go.adt.com. (NCController+NCIPC.m:13)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received ivehost = go.adt.com (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter launch_url = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received launch_url =  (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter linux_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received linux_end_script =  (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter linux_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received linux_start_script =  (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter locale = "en" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received locale = en (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.info -loginWindowController:setClientParameter:value: saving locale preference (
        en
    ) as AppleLanguages for use on next launch. (NCController.m:1324)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter mac_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received mac_end_script =  (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCScriptLauncher.info -scheduleScriptAtPath:forEventIdentifier: scheduled  for NCScriptLauncherPostDisconnectEventIdentifier (NCScriptLauncher.m:35)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter mac_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received mac_start_script =  (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCScriptLauncher.info -scheduleScriptAtPath:forEventIdentifier: scheduled  for NCScriptLauncherPostConnectEventIdentifier (NCScriptLauncher.m:35)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter ncp_read_timeout = "120" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received ncp_read_timeout = 120 (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter redir_url = "/dana/home/index.cgi" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received redir_url = /dana/home/index.cgi (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter redir_win = "Please_Wait7819" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received redir_win = Please_Wait7819 (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter signin_url = "/" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received signin_url = / (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter switch-dns-search-order = "enabled" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received switch-dns-search-order = enabled (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter uninstall_on_quit = "0" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received uninstall_on_quit = 0 (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter upgradeMode = "2" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received upgradeMode = 2 (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received win_end_script =  (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_skip_start_script = "0" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received win_skip_start_script = 0 (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received win_start_script =  (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter cookies = "DSLastAccess=1307047821; DSFirstAccess=1307047819; DSID=bff2f274c3d8f863f7e631151c7a9bd3; DSSignInURL=/" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received DSLastAccess = 1307047821 (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSLastAccess, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:51:11.389 Network Connect[22538] DSSessionContext.info -cookie: Didn't find DSLastAccess cookie! (DSSessionContext.m:68)
    2011-06-02 13:51:11.814 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSLastAccess cookie (DSSessionContext.m:148)
    2011-06-02 13:51:11.814 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received DSFirstAccess = 1307047819 (NCController.m:1297)
    2011-06-02 13:51:11.814 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSFirstAccess, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:51:11.814 Network Connect[22538] DSSessionContext.info -cookie: Didn't find DSFirstAccess cookie! (DSSessionContext.m:68)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSFirstAccess cookie (DSSessionContext.m:148)
    2011-06-02 13:51:11.887 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received DSID = bff2f274c3d8f863f7e631151c7a9bd3 (NCController.m:1297)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSID, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -cookie: Didn't find DSID cookie! (DSSessionContext.m:68)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSID cookie (DSSessionContext.m:148)
    2011-06-02 13:51:11.887 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received DSSignInURL = / (NCController.m:1297)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSSignInURL, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -cookie: Didn't find DSSignInURL cookie! (DSSessionContext.m:68)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSSignInURL cookie (DSSessionContext.m:148)
    2011-06-02 13:51:12.393 Network Connect[22538] DSLoginWindowController.info -windowDidLoad setting user-agent to Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/6533.20.25 (KHTML, like Gecko) Network Connect (like Safari)/14619 (DSLoginWindowController.m:105)
    2011-06-02 13:51:14.343 Network Connect[22538] DSLoginWindowController.info -showWindowWithWebLogin No proxy to resolve.. (DSLoginWindowController.m:824)
    2011-06-02 13:51:14.343 Network Connect[22538] NCController.info -enterResolvingProxiesStateWithOldState: reconfiguring and resolving proxies (NCController+NCStateChanges.m:112)
    2011-06-02 13:51:14.344 Network Connect[22538] NCController.info -reconfigure Reconfiguring on en1 (NCController.m:824)
    2011-06-02 13:51:14.789 Network Connect[22538] DSHTTPSProxyResolver.info -resolveProxiesInBackground No HTTPS proxy (DSHTTPSProxyResolver.m:378)
    2011-06-02 13:51:15.227 Network Connect[22538] nc.mac.app.1200.error <DSError 0x2a04f0 domain=nc.mac.app code=1200 "Network Connect can't launch service" userInfo={
        DSErrorClassName = NCController;
        DSErrorLocalizedAlertText = "Network Connect cannot start the tunneling service. See the Log Viewer for more information.";
        DSErrorLocalizedAlertTitle = "Network Connect cannot establish a secure session.";
        DSErrorLocalizedFirstButtonTitle = Cancel;
        DSErrorLocalizedSecondButtonTitle = DSOptions;
        DSErrorMethodName = "enterWaitingOnServiceStateWithOldState:";
        DSErrorStackBackTrace =     (
            "atos not installed: hex trace: 0x11007e97  0x110088d5  0x105f8  0x3fd6  0x12008469  0x12008d6c  0x3fd6  0x1201914d  0xf7e0  0x9867cedd  0x9867ce48  0x986b9698  0x11016b46  0x11006148  0x110063ba  0x11017f4e  0x96cb5588  0x9865e793  0x9865e19a  0x96caa384  0x96d82038  0x986424cb  0x9863ff8f  0x9863f464  0x9863f291  0x92884004  0x92883cf7  0x92883c40  0x96f5b78d  0x96f5afce  0x96f1d247  0x96f152d9  0xde2a  0x2656  0x2571  0x5"
        path = "/usr/local/juniper/nc/6.4.0/ncproxyd";
        reason = "working directory doesn't exist.";
    } (NCController+NCStateChanges.m:160)>
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info ifconfig -a: lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet6 ::1 prefixlen 128
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet 127.0.0.1 netmask 0xff000000
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info stf0: flags=0<> mtu 1280
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           ether d4:9a:20:ec:fe:36
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           media: autoselect
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           status: inactive
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           ether 34:15:9e:8d:11:36
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet6 fe80::3615:9eff:fe8d:1136%en1 prefixlen 64 scopeid 0x5
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet 192.168.1.65 netmask 0xffffff00 broadcast 192.168.1.255
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet6 ::3615:9eff:fe8d:1136 prefixlen 64 autoconf
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           media: autoselect
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           status: active
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info netstat -rnf inet: -a: Routing tables
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info Internet:
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info Destination        Gateway            Flags        Refs      Use   Netif Expire
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info default            192.168.1.254      UGSc           28        0     en1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 127                127.0.0.1          UCS             0        0     lo0
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 127.0.0.1          127.0.0.1          UH              0      958     lo0
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 169.254            link#5             UCS             0        0     en1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1          link#5             UCS             6        0     en1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.64       0:1b:63:f3:64:4f   UHLWI           0        0     en1    239
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.65       127.0.0.1          UHS             0      703     lo0
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.70       24:ab:81:fd:8:46   UHLWI           0        0     en1    100
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.74       0:1b:63:c8:71:2    UHLWI           1      627     en1    548
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.254      0:1b:5b:6e:35:a1   UHLWI          39      226     en1   1199
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.255      link#5             UHLWbI          2       85     en1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info resolv.conf: #
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # Mac OS X Notice
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info #
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # This file is not used by the host name and address resolution
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # or the DNS query routing mechanisms used by most processes on
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # this Mac OS X system.
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info #
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # This file is automatically generated.
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info #
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info domain gateway.2wire.net
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info nameserver 192.168.1.254
    2011-06-02 13:51:16.912 ../../webserver/:093 [       Thread-21]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:51:16.964 ../../webserver/:100 [       Thread-21]     [RuntimeExec] Process ID = java.lang.UNIXProcess@cc7f9e
    2011-06-02 13:51:16.970 ../../webserver/:045 [       Thread-23]     [RuntimeExec] Result [22538]
    2011-06-02 13:51:16.972 ../../webserver/:141 [       Thread-21]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:51:16.972 ../../webserver/:166 [       Thread-21]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@cc7f9e] outputStream=[22538] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:51:16.973)[       Thread-21] The application is already running with PID 22538
    NCAppController.:000 (06/02 13:51:18.775)[       Thread-21] Starting quit sequence...
    NCAppController.:000 (06/02 13:51:18.776)[       Thread-21] Cleaning up
    NCAppController.:000 (06/02 13:51:18.777)[       Thread-21] doQuit trying to load /dana/home/starter.cgi?startpageonly=1
    NCAppController.:000 (06/02 13:51:18.777)[       Thread-21] Loading https://go.adt.com/dana/home/starter.cgi?startpageonly=1 in current window
    NCAppController.:000 (06/02 13:58:03.266)[applet-NCAppController.class] Entering NCAppController.init() on Thu Jun 02 13:58:03 PDT 2011
    NCAppController.:000 (06/02 13:58:03.311)[applet-NCAppController.class] New NCAppController session release [6.4.0]
    NCAppController.:000 (06/02 13:58:03.311)[applet-NCAppController.class] Build number [14619]
    NCAppController.:000 (06/02 13:58:03.387)[applet-NCAppController.class] This host needs a i386 binary
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param ProductVersion=14619
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param SystemVersion=6.4.0
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param action=install
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param autolaunch=0
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param cert_md5=d0ba5f2839b732e6972d55ea9e6c40e6
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param dns-suffix=adt.com
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param enable_logging=1
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param enable_logupload=1
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param internal-proxy-config=no
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param ivehost=go.adt.com
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param launch_url=
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param linux_end_script=
    NCAppController.:000 (06/02 13:58:03.496)[applet-NCAppController.class] Param linux_start_script=
    NCAppController.:000 (06/02 13:58:03.496)[applet-NCAppController.class] Param locale=en
    NCAppController.:000 (06/02 13:58:03.496)[applet-NCAppController.class] Param mac_end_script=
    NCAppController.:000 (06/02 13:58:03.497)[applet-NCAppController.class] Param mac_start_script=
    NCAppController.:000 (06/02 13:58:03.497)[applet-NCAppController.class] Param ncp_read_timeout=120
    NCAppController.:000 (06/02 13:58:03.497)[applet-NCAppController.class] Param redir_url=/dana/home/starter.cgi?startpageonly=1
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param redir_win=Please_Wait7819
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param signin_url=/
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param switch-dns-search-order=enabled
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param uninstall_on_quit=0
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param upgradeMode=2
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param win_end_script=
    NCAppController.:000 (06/02 13:58:03.499)[applet-NCAppController.class] Param win_skip_start_script=0
    NCAppController.:000 (06/02 13:58:03.499)[applet-NCAppController.class] Param win_start_script=
    NCAppController.:000 (06/02 13:58:03.499)[applet-NCAppController.class] Param =null
    NCAppController.:000 (06/02 13:58:03.499)[applet-NCAppController.class] Param cookies=<hidden>
    DSAppControlThre:000 (06/02 13:58:03.505)[       Thread-29] Beginning install...
    NCAppInstallImpl:000 (06/02 13:58:03.505)[       Thread-29] Checking installed version
    NCAppInstallImpl:000 (06/02 13:58:03.534)[       Thread-29] Version on disk is 14619
    NCAppInstallImpl:000 (06/02 13:58:03.534)[       Thread-29] This version is 14619
    NCAppInstallImpl:000 (06/02 13:58:03.534)[       Thread-29] Checking if correct locale is installed
    DSAppControlThre:000 (06/02 13:58:03.570)[       Thread-29] Checking to see if the application is already running
    2011-06-02 13:51:38.496 Network Connect[22538] NCProxyMonitor.warn -quit quitting ncproxyd (0) (NCProxyMonitor.mm:132)
    2011-06-02 13:51:38.496 Network Connect[22538] DSIPCConnection.warn -enqueueMessageWithName:types: IPC message nc_quit sent while _writeFileHandle == nil (DSIPCConnection.mm:455)
    2011-06-02 13:51:38.531 Network Connect[22538] NCAdminFunctions.info calling ncproxyd to restore system configuration. (NCAdminFunctions.mm:111)
    2011-06-02 13:51:38.779 Network Connect[22538] http_connection.para Starting a timed connect with SSL session 0x2bdd30, proxy 0:0, and timeout 30 (http_connection.cpp:175)
    2011-06-02 13:51:38.779 Network Connect[22538] http_connection.para Entering state_start_connection (http_connection.cpp:285)
    2011-06-02 13:51:38.806 ncproxyd-admintool[22557] DSIPC.para Recevied message bytes:  (52) <0><0><0>4<a1><4><85><d8>/X<16>>1<1c><ff><c7>:<f4><db>2<e4>c<bc><82><c9><8f>`<1 a>M<14><fa>.<f><a>2<c0><8c><1f><99><87><fc><d7>Ud<ab>u<10><7><96>w<1f><fc> (ipc.cpp:727)
    2011-06-02 13:51:38.846 Network Connect[22538] http_connection.para Entering state_continue_connection (http_connection.cpp:302)
    2011-06-02 13:51:38.846 ncproxyd-admintool[22557] NCAdminHelper.info looking for ncproxyd in 63 processes (NCAdminHelper.cpp:1131)
    2011-06-02 13:51:38.847 Network Connect[22538] http_connection.para Entering state_ssl_connect (http_connection.cpp:471)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 0.0.0.0/0.0.0.0 gw 192.168.1.254 metric 1 via 0x00000000 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 127.0.0.0/255.0.0.0 gw 127.0.0.1 metric 1 via 0x00000000 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 127.0.0.1/255.255.255.255 gw 127.0.0.1 metric 1 via 0x00000000 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 169.254.0.0/255.255.0.0 gw 0.0.0.0 metric 1 via 0x00000005 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 192.168.1.0/255.255.255.0 gw 0.0.0.0 metric 1 via 0x00000005 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 192.168.1.65/255.255.255.255 gw 127.0.0.1 metric 1 via 0x00000000 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] ncproxyd.info No added routes to delete (ncproxyd.cpp:242)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] config.info Removing key "ncproxyd_added_routes" from the persistent store (config.cpp:273)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] NCAdminHelper.info removing ncproxyd_added_routes (NCAdminHelper.cpp:1020)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] ncproxyd.info No routes to restore (ncproxyd.cpp:251)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] config.info Removing key "ncproxyd_saved_routes" from the persistent store (config.cpp:273)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] NCAdminHelper.info removing ncproxyd_saved_routes (NCAdminHelper.cpp:1020)
    2011-06-02 13:51:38.848 ncproxyd-admintool[22557] NCAdminHelper.warn restore_dns_configuration: failed to rename /etc/hosts.bak to /etc/hosts: No such file or directory (NCAdminHelper.cpp:810)
    2011-06-02 13:51:38.917 Network Connect[22538] DSIPC.para Recevied message bytes:  (186) <0><0><0><ba><81>$<9b><dd>&\<11><18><b><4><e0><cd>$<f4><da>2<e3>H<a1><95><df><a 5><7f><17>><9><9f><12>|<c9>4<ae><ea>v<fe><81><a6><dd>D<7f><aa>~|G<b6>mV$<a>'u<f0 >=<a>Nil<d5>r~n<92><6>=A<e7>#<c5><da>A<9f>O<c3>p<82>E<d><e8><e6>b<fb><15>-<f5><9 d><e9><fa><5><e6>1<f5><9a><fb><a8><d9>m<e7>PmZ<a6><98>I<ee>MP<7f><d1><92><12><9f >30 <dd>|<eb> <b4>X<aa><ce>o<88>l[b<2><d8>6<b7>.K<ba><9c><97><96><7f>]<b3>J<83><eb>.<c><b5><< a><a>eH<a2><b9><12><99><9c><bb><eb>D<bd>|0&<ab>k<fc>`<13><af>6<9d><cf>(T<9d><8d> <e5><fe>7<8f>r<fb> (ipc.cpp:727)
    2011-06-02 13:58:03.569 ../../webserver/:093 [       Thread-29]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:58:03.607 ../../webserver/:100 [       Thread-29]     [RuntimeExec] Process ID = java.lang.UNIXProcess@2af6a882
    2011-06-02 13:58:03.679 ../../webserver/:141 [       Thread-29]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:58:03.680 ../../webserver/:166 [       Thread-29]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@2af6a882] outputStream=[empty -null output stream-] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:58:03.681)[       Thread-29] Checking to see if the application is already running
    2011-06-02 13:58:03.680 ../../webserver/:093 [       Thread-29]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xaco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:58:03.720 ../../webserver/:100 [       Thread-29]     [RuntimeExec] Process ID = java.lang.UNIXProcess@6a25b72a
    2011-06-02 13:58:03.736 ../../webserver/:141 [       Thread-29]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:58:03.737 ../../webserver/:166 [       Thread-29]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@6a25b72a] outputStream=[empty -null output stream-] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:58:03.738)[       Thread-29] The application is NOT already running
    NCAppInstallImpl:000 (06/02 13:58:03.740)[       Thread-29] Attempting to launch the application (mode 1)
    NCAppInstallImpl:000 (06/02 13:58:03.741)[       Thread-29] Running this command: /Applications/Network Connect.app/Contents/MacOS/Network Connect -NCLaunchType 1 -AppleLanguages ( en )
    NCAppInstallImpl:000 (06/02 13:58:03.809)[       Thread-29] Pushing parameter [ProductVersion=14619] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.810)[       Thread-29] Pushing parameter [SystemVersion=6.4.0] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.866)[       Thread-29] Pushing parameter [action=install] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.866)[       Thread-29] Pushing parameter [autolaunch=0] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.867)[       Thread-29] Pushing parameter [cert_md5=d0ba5f2839b732e6972d55ea9e6c40e6] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.867)[       Thread-29] Pushing parameter [dns-suffix=adt.com] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.867)[       Thread-29] Pushing parameter [enable_logging=1] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [enable_logupload=1] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [internal-proxy-config=no] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [ivehost=go.adt.com] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [launch_url=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [linux_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [linux_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [locale=en] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [mac_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [mac_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [ncp_read_timeout=120] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [redir_url=/dana/home/starter.cgi?startpageonly=1] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [redir_win=Please_Wait7819] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [signin_url=/] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [switch-dns-search-order=enabled] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [uninstall_on_quit=0] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [upgradeMode=2] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [win_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [win_skip_start_script=0] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.871)[       Thread-29] Pushing parameter [win_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.871)[       Thread-29] Pushing parameter [=null] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.871)[       Thread-29] Pushing parameter [cookies=<hidden>] to the app
    DSAppControlThre:000 (06/02 13:58:03.871)[       Thread-29] Checking to see if the application is already running
    2011-06-02 13:58:03.871 ../../webserver/:093 [       Thread-29]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:58:03.916 ../../webserver/:100 [       Thread-29]     [RuntimeExec] Process ID = java.lang.UNIXProcess@6dabbec4
    2011-06-02 13:58:03.920 ../../webserver/:045 [       Thread-35]     [RuntimeExec] Result [22587]
    2011-06-02 13:58:03.921 ../../webserver/:141 [       Thread-29]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:58:03.921 ../../webserver/:166 [       Thread-29]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@6dabbec4] outputStream=[22587] statusStream=[empty -null status stream-]
    NCAppController.:000 (06/02 13:58:03.922)[       Thread-29] Starting quit sequence...
    NCAppController.:000 (06/02 13:58:03.922)[       Thread-29] Cleaning up
    NCAppController.:000 (06/02 13:58:03.923)[       Thread-29] doQuit trying to load /dana/home/starter.cgi?startpageonly=1
    NCAppController.:000 (06/02 13:58:03.923)[       Thread-29] Loading https://go.adt.com/dana/home/starter.cgi?startpageonly=1 in current window
    2011-06-02 13:58:08.899 Network Connect[22587] NCController.info -applicationDidFinishLaunching: Network Connect 6.4.0 (14619)/Version 10.6.6 (Build 10J567) starting (NCController.m:98)
    2011-06-02 13:58:09.111 Network Connect[22587] NCController.info -applicationDidFinishLaunching: launched from applet/application launcher (launchType: 1), waiting for parameters (NCController.m:133)
    2011-06-02 13:58:09.113 Network Connect[22587] DSIPCConnection.info -_clearIPCBuffer: Clearing the IPC buffer (DSIPCConnection.mm:526)
    2011-06-02 13:58:09.154 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSFirstAccess cookie (DSSessionContext.m:148)
    2011-06-02 13:58:09.154 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received DSID = bff2f274c3d8f863f7e631151c7a9bd3 (NCController.m:1297)
    2011-06-02 13:58:09.154 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSID, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:58:09.154 Network Connect[22587] DSSessionContext.info -cookie: Didn't find DSID cookie! (DSSessionContext.m:68)
    2011-06-02 13:58:09.154 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSID cookie (DSSessionContext.m:148)
    2011-06-02 13:58:09.155 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received DSSignInURL = / (NCController.m:1297)
    2011-06-02 13:58:09.155 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSSignInURL, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:58:09.155 Network Connect[22587] DSSessionContext.info -cookie: Didn't find DSSignInURL cookie! (DSSessionContext.m:68)
    2011-06-02 13:58:09.155 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSSignInURL cookie (DSSessionContext.m:148)
    2011-06-02 13:58:09.174 Network Connect[22587] DSLoginWindowController.info -windowDidLoad setting user-agent to Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/6533.20.25 (KHTML, like Gecko) Network Connect (like Safari)/14619 (DSLoginWindowController.m:105)
    2011-06-02 13:58:09.387 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter internal-proxy-config = "no" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.391 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received internal-proxy-config = no (NCController.m:1297)
    2011-06-02 13:58:09.392 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter ivehost = "go.adt.com" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.392 Network Connect[22587] NCController.info -ipc:appletSetIVEParameter:: applet says to connect to go.adt.com. (NCController+NCIPC.m:13)
    2011-06-02 13:58:09.393 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received ivehost = go.adt.com (NCController.m:1297)
    2011-06-02 13:58:09.393 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter launch_url = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.394 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received launch_url =  (NCController.m:1297)
    2011-06-02 13:58:09.394 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter linux_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.395 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received linux_end_script =  (NCController.m:1297)
    2011-06-02 13:58:09.395 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter linux_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.396 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received linux_start_script =  (NCController.m:1297)
    2011-06-02 13:58:09.396 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter locale = "en" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.396 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received locale = en (NCController.m:1297)
    2011-06-02 13:58:09.397 Network Connect[22587] NCController.info -loginWindowController:setClientParameter:value: saving locale preference (
        en
    ) as AppleLanguages for use on next launch. (NCController.m:1324)
    2011-06-02 13:58:09.398 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter mac_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.399 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received mac_end_script =  (NCController.m:1297)
    2011-06-02 13:58:09.399 Network Connect[22587] NCScriptLauncher.info -scheduleScriptAtPath:forEventIdentifier: scheduled  for NCScriptLauncherPostDisconnectEventIdentifier (NCScriptLauncher.m:35)
    2011-06-02 13:58:09.400 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter mac_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.400 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received mac_start_script =  (NCController.m:1297)
    2011-06-02 13:58:09.400 Network Connect[22587] NCScriptLauncher.info -scheduleScriptAtPath:forEventIdentifier: scheduled  for NCScriptLauncherPostConnectEventIdentifier (NCScriptLauncher.m:35)
    2011-06-02 13:58:09.401 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter ncp_read_timeout = "120" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.401 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received ncp_read_timeout = 120 (NCController.m:1297)
    2011-06-02 13:58:09.402 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter redir_url = "/dana/home/starter.cgi?startpageonly=1" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.402 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received redir_url = /dana/home/starter.cgi?startpageonly=1 (NCController.m:1297)
    2011-06-02 13:58:09.403 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter redir_win = "Please_Wait7819" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.403 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received redir_win = Please_Wait7819 (NCController.m:1297)
    2011-06-02 13:58:09.404 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter signin_url = "/" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.404 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received signin_url = / (NCController.m:1297)
    2011-06-02 13:58:09.404 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter switch-dns-search-order = "enabled" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.405 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received switch-dns-search-order = enabled (NCController.m:1297)
    2011-06-02 13:58:09.406 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter uninstall_on_quit = "0" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.406 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received uninstall_on_quit = 0 (NCController.m:1297)
    2011-06-02 13:58:09.406 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter upgradeMode = "2" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.407 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received upgradeMode = 2 (NCController.m:1297)
    2011-06-02 13:58:09.407 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.408 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received win_end_script =  (NCController.m:1297)
    2011-06-02 13:58:09.408 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_skip_start_script = "0" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.408 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received win_skip_start_script = 0 (NCController.m:1297)
    2011-06-02 13:58:09.409 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.409 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received win_start_script =  (NCController.m:1297)
    2011-06-02 13:58:09.410 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter cookies = "DSLastAccess=1307048282; DSFirstAccess=1307047819; DSID=bff2f274c3d8f863f7e631151c7a9bd3; DSSignInURL=/" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.410 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received DSLastAccess = 1307048282 (NCController.m:1297)
    2011-06-02 13:58:09.411 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSLastAccess, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:58:09.411 Network Connect[22587] DSSessionContext.info -cookie: Didn't find DSLastAccess cookie! (DSSessionContext.m:68)
    2011-06-02 13:58:09.748 Network Connect[22587] DSLoginWindowController.info -showWindowWithWebLogin No proxy to resolve.. (DSLoginWindowController.m:824)
    2011-06-02 13:58:09.748 Network Connect[22587] NCController.info -enterResolvingProxiesStateWithOldState: reconfiguring and resolving proxies (NCController+NCStateChanges.m:112)
    2011-06-02 13:58:09.748 Network Connect[22587] NCController.info -reconfigure Reconfiguring on en1 (NCController.m:824)
    2011-06-02 13:58:09.788 Network Connect[22587] DSHTTPSProxyResolver.info -resolveProxiesInBackground No HTTPS proxy (DSHTTPSProxyResolver.m:378)
    2011-06-02 13:58:09.841 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSLastAccess cookie (DSSessionContext.m:148)
    2011-06-02 13:58:09.842 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received DSFirstAccess = 1307047819 (NCController.m:1297)
    2011-06-02 13:58:09.843 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSFirstAccess, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:58:09.843 Network Connect[22587] DSSessionContext.info -cookie: Didn't find DSFirstAccess cookie! (DSSessionContext.m:68)
    2011-06-02 13:58:09.847 Network Connect[22587] nc.mac.app.1200.error <DSError 0x28bf20 domain=nc.mac.app code=1200 "Network Connect can't launch service" userInfo={
        DSErrorClassName = NCController;
        DSErrorLocalizedAlertText = "Network Connect cannot start the tunneling service. See the Log Viewer for more information.";
        DSErrorLocalizedAlertTitle = "Network Connect cannot establish a secure session.";
        DSErrorLocalizedFirstButtonTitle = Cancel;
        DSErrorLocalizedSecondButtonTitle = DSOptions;
        DSErrorMethodName = "enterWaitingOnServiceStateWithOldState:";
        DSErrorStackBackTrace =     (
            "atos not installed: hex trace: 0x11007e97  0x110088d5  0x105f8  0x3fd6  0x12008469  0x12008d6c  0x3fd6  0x1201914d  0xf7e0  0x9867cedd  0x9867ce48  0x986b9698  0x11016b46  0x11006148  0x110063ba  0x11017f4e  0x96cb5588  0x9865e793  0x9865e19a  0x96caa384  0x96d82038  0x986424cb  0x9863ff8f  0x9863f464  0x9863f291  0x92884004  0x92883cf7  0x92883c40  0x96f5b78d  0x96f5afce  0x96f1d247  0x96f152d9  0xde2a  0x2656  0x2571  0x5"
        path = "/usr/local/juniper/nc/6.4.0/ncproxyd";
        reason = "working directory doesn't exist.";
    } (NCController+NCStateChanges.m:160)>
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info ifconfig -a: lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet6 ::1 prefixlen 128
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet 127.0.0.1 netmask 0xff000000
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info stf0: flags=0<> mtu 1280
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           ether d4:9a:20:ec:fe:36
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           media: autoselect
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           status: inactive
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           ether 34:15:9e:8d:11:36
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet6 fe80::3615:9eff:fe8d:1136%en1 prefixlen 64 scopeid 0x5
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet 192.168.1.65 netmask 0xffffff00 broadcast 192.168.1.255
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet6 ::3615:9eff:fe8d:1136 prefixlen 64 autoconf
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           media: autoselect
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           status: active
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info netstat -rnf inet: -a: Routing tables
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info Internet:
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info Destination        Gateway            Flags        Refs      Use   Netif Expire
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info default            192.168.1.254      UGSc           15        0     en1

    rtdolfan13 I have the same problem with my new mac Mac OS X (10.6.7). My other mac worked fine. I work for the same company as you also.. please let me know if you found a solution and I will do the same. Our "help desk" does not know anything about macs which makes no sense to me. We have 4 mac users in our office and we can not log on with the VPN.. kinda frustrating.
    hope we can resolve this soon!

Maybe you are looking for

  • Insert date into a table in xslt mapping

    Hello , I have developing a BPEL process and I am trying to insert system date through BPEL into the oracle table . I have written the following in the xsl part of my transformation file : <xsl:value-of select="orcl:query-database("select to_date(to_

  • Desc table_name statements no longer running in sql developer

    simple desc statements like desc table_name; used to run in sql developer however they no longer work. It was working a few days ago and now the same statements dont return any results. The tables exist as I can run select statements fine just not de

  • ALE using PULL Approach question

    Hello All,               Can anybody  explain me the sep-by-step process for getting the material master using BD11- PULL approach. I had already configured the Distribution model for sending the request MASFET in system B, from which we are requesti

  • Dual Screen Setup

    Hi, I've just bought a Mac Mini and I'm in the process of setting it up to use as a pc and also a media centre connected to my HD Tv and I have a few questions I was hoping someone here could help me with. At the moment I have the Mac's HDMI out runn

  • Dynamic checkboxes with jsp

    Hi, I need to create dynamic checkboxes in my jsp page from the values retrived from the database(oracle).help me with the code.My oracle queries are in my Java bean coding.pls its very very urgent.help me out.