Problems using panels of remote façade with LabVIEW 8.6

Hi all

I have an executable in time real LabVIEW I have deployed and running on a PSC-2220, and now I want to access the façade of this executable from a local computer connected to it.  I'm doing it by running a VI on the local computer that uses the "RP. Open the connection to the server"VI.  I used a similar setup with a PSC and LabVIEW 8.5 and it worked very well.  I went through a lot of documentation on the site OR on the way to implement and did all the usual things:

I have the VI in a project deployed on the CFP.

I activated the web server and VI server on the target.

I am passing the correct name of VI, IP address and the port at RP. Open connection to the server

I can see that RT executable runs on the CFP, when I deploy it.  My problem occurs when I make the call to RP. Connection to Open the VI server executes the call, but the façade of the executable of RT on the CFP never opens, and I never an error of appellant VI (I have a PR of VI to a dialogue and an indicator error and I get nothing).  He calls the VI of PR, but then wait indefinitely and never opens the front of the executable RT.  This same problem occurs when I try to do the remote façade using web publishing tool, or when I use the option "Connect to remote front panel" in LabVIEW.

Has anyone ever seen this before, or know of anything I could hurt?  Is this a problem with 8.6?

Thank you.

Hello

You use FieldPoint 6.0.2?  We have a report of Corrective Action (#125870) for the remote front panels for the cFP-2220 with LabVIEW 8.6 and FieldPoint 6.0.2.  R & D is currently working on a fix, until then, the only known workaround is to use LabVIEW 8.5.1.

Tags: NI Software

Similar Questions

  • Is there a way to control the fonts used by a remote façade displayed in a browser?

    When you use a web browser (on a system with only the TEN LabVIEW installed) to monitor a remote façade commissioned from a cRIO is a way to control which fonts are used by the browser when it displays the Panel?  In the case of a stand-alone executable, I know that you can include definitions of fonts associated with the executable 'appfont' and 'FPfont' in the INI file to control the fonts used by the executable. Is there something similar that can be done with a front panel running in a browser window?  Or do I go through the VI and explicitly define a non-generic font specific for each control and indicator that is displayed?

    What is the size of fonts in windows on the PC?  It has 125%?

    Your problem is similar to that discussed in this thread.  Set a Date and hour - week 5 months does not last line

  • Problems using "Appellant library function Node" statements with a DLL compiled by LabWindowsCVI

    I'm calling a simple C routine to a VI by using the node call library feature.  The example of ANSIdouble.vi, found inside the example called DLL.VI given in the help files does not work.

    But when I replace it with the same program (the source code is given in the DLL.VI call) compiled by LabWindowsCVI, it does not work.  In fact, it blocks Labview.

    I use LV 8.2.1.

    In addition, LabWindowsCVI does not compile the example as written code. I had to change the Sub _declspec (dllexport) in front of the function declaration cancel DLLEXPORT DLLSTDCALL and #incude the file "C:\Program NIUninstaller Instruments\CVI81\include\cvidef.h".  The compiler produces errors if not.

    The DLL.VI program to call is:

    #include "extcode.h".

    _declspec (dllexport) void ANSIdouble (double entry, double * output);
    _declspec (dllexport) void ANSIdouble (double entry, double * output)
    {
    * output = entry * entry;
    }

    The program compiled by LabWindowCVI is:

    #include "C:\Program NIUninstaller Instruments\LabVIEW 8.2\cintools\extcode.h".
    #include "C:\Program NIUninstaller Instruments\CVI81\include\cvidef.h".
    #include "TestC.h".

    DLLEXPORT DLLSTDCALL ANSIdouble(double input, double *output) Sub
    {
    * output = entry * entry;
    }

    where TestC.h is the statement:

    Sub DLLEXPORT DLLSTDCALL ANSIdouble(double input, double *output);

    The program has been compiled in a DLL that can be debugged with box of determination of objectives, copied as an attachment.

    Thanks to all those who can help you.

    TJ

    Solved with a call to Al on the help line.

    The correct procedure can be found by searching for "creating DLL" on the Web site of NOR.

    Using the page found by searching for "creating"DLL"helping within the CVI, is TOTALLY FAKE!  At least with my worm 8.1.1.

    Tom J

  • Is there a problem using CFPOP in CF MX 7 with Exchange 2007?

    We have a scheduled task that checks the mailbox and, according to the request, replies to the sender with our basic contact information. It worked fine for several years using the CF MX 7 Standard and MS Exchange 2000. We have just changed to MS Exchange 2007 and we get an error as follows: ' connection failure: unknown username or bad password. " We can access the mailbox directly from Exchange by using the account and the password, so we think we send the correct information (example below).

    < CFPOP ACTION = "GetHeaderOnly" SERVER = "192.168.1.15" USERNAME = "testaccount" PASSWORD = "testpassword" NAME = "getMail" >

    Is there something we're missing? We believe that the IP address, the account and the password is always accurate. We have assigned to this mail server in the Mail tab in the CF Administrator and he can see and route CFMAILs by it.

    Any help is appreciated.

    We discovered that Exchange 2007 has five specific steps that need to occur in a particular order for CFPOP resume working properly. We did it (despite several security issues) because this function is strictly internal. Not recommended for an application available for the general public.

    Procedure for Exchange 2007 works for CFPOP:
    (1) start the service of POP on the Exchange 2007 server.
    (2) allow the e-mail accounts to use POP3.
    (3) lower the requirements of security on these accounts to allow CF to send clear text instead of encrypted (SSL) requests for POP3.
    (4) set the Exchange Server to accept the relay.
    (5) lower the safety requirements for the relay.

    I hope I explained this correctly. That's how my network supervisor explained to me there.

  • Problem using the list separated by commas with nested table element

    Hello

    I have a list separated by commas like this:
    H23004,H24005,T7231,T8231,T9231
    And want to create a function that creates a where clause clause for each element with an output like this:
    UPPER('H23004') IN (UPPER(charge))
    OR UPPER('H23005') IN (UPPER(charge))
    OR UPPER('T7231') IN (UPPER(charge))
    OR UPPER('T8231') IN (UPPER(charge))
    OR UPPER('T9231') IN (UPPER(charge))
    Here's my test function that is not working properly:
    create or replace function FNC_LIST_TO_WHERE_CLAUSE(v_list in VARCHAR2) return varchar2 is
     -- declaration of list type
     TYPE batch_type IS TABLE OF pr_stamm.charge%TYPE;
     -- variable for Batches
     v_batch batch_type := batch_type('''' || replace(v_list,',',''',''') || '''');
     return_script varchar2(1000);
    
     BEGIN
     -- loop as long as there are objects left
     FOR i IN v_batch.FIRST .. v_batch.LAST
     LOOP
       --DBMS_OUTPUT.PUT_LINE(offices(i));
       -- create where clause
       IF i = 1 THEN
         return_script := 'UPPER(' || v_batch(i) || ') IN (UPPER(charge))';
       ELSE
         return_script := return_script || ' OR UPPER(' || v_batch(i) || ') IN (UPPER(charge))';
       END IF;
     END LOOP;
    
     return (return_script);
     end;
    The out put looks like this:
    UPPER('H23004','H24005','T7231','T8231','T9231') IN (UPPER(charge))
    I don't know what I did wrong? It calculates the amount of the incorrect array element! (v_batch. Must be 5)
    v_batch. FIRST = 1
    v_batch. LAST = 1

    Kind regards

    Tobias

    Try this...

    declare
    text varchar2 (1000): = "H23004, H24005, T7231, T8231, T9231;
    v_where varchar2 (1000);
    Start
    Text: = text | «, » ;
    While instr (text, ',') <> 0
    loop
    v_where: = v_where | ' UPPER ("': substr (Text, 1, InStr(Text,',',1)-1) |") ' IN (UPPER (load)) OR ';
    text: = substr (text, instr(text,',',1) + 1);
    end loop;
    v_where: = substr (v_where, 1, length (v_where)-3);
    dbms_output.put_line (v_where);
    end;

    convert it to function...

  • can I use the latest version of MAX with labview 6.0?

    Description of the problem:
    We have an old system running LabView 6.0 and MAX4.5 with NOR-DAQmx 8.7 and
    NI-VISA 4.4.
    We had a hard disk problem that fixed us and now MAX 4.5 with NOR-DAQmx 8.7
    will be important is no longer the configdata.nce file.
    The error message is:
    The following products can not copy the destination system:
    NOR-DAQmx 8.7: error code 0x80004005 (no description of the available error)
    Continue?
    OK, cancel

    What can I do to overcome this? Can I load the latest MAX and NOR-DAQmx and
    expect it to work?

    Thank you
    Chris

    Software of NEITHER: LabVIEW version 6.0
    Materials: Select one if your problem is related to the hardware device
    Driver version:
    OS: Windows XP

    Perhaps the. NCE file was created with an earlier version of max, while the version has been installed after?

    If NEITHER responds, you might be able to send the file to look at.

  • How to: use desktop connection remote with windows 7 to windows xp sp3

    Original title : is it possible to use the new remote desktop provided with windows 7 to windows xp sp3 I want to use the audio options

    Hello
    Please I want to know if there is any way to use the new options included in windows Remote Desktop connection 7 update connection Remote Desktop in windows xp sp3 or as the RTD of widows 7
    is there a way please just send me email to * address email is removed from the privacy *.

    Thanks in advance
    hamadakhalaf

    Hello

    You need third-party software to do this, I suggest you use your favorite search engine and check for the software that supports this option.

    Note: Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

    Also check out this link:
    http://social.technet.Microsoft.com/forums/en/w7itpronetworking/thread/a29f6207-4551-4AE1-941e-364919f50ad4

    It will be useful.

  • Hi, can someone give me some ideas on what type/brand of usb cameras are not suitable for labview? I need to use with labview and IMAQ Cheers acquisition image vision module

    Hi, can someone give me some ideas on what type/brand of usb cameras are not suitable for labview? I need to use with labview and image acquisition IMAQCheers vision module

    Hi, I use a 1.4MP USB camera with LabView. The brand is ID - a German company.

  • Problem with remote façade on parallels panels

    I'm using LabVIEW for windows using parallels on my mac. Whenever I'm doing a website with the address of the Web site remote façade panels eventually satrtiing with 10.211.55.3, which is the parallels network IP address. For example, the created Web site URL was http://10.211.55.3:8000 / add.html. If I use LabVIEW using bootcamp on my mac I get a valid URL from the IP address of the computer. I can access this site from a different computer and control my VI successfully.

    So my question is... does anyone know a way I can use LabVIEW using parallels on my mac and a valid site using remote façade panels.

    Thank you for your response. After trying a lot of things I thought about her. You can go for parallels 'settings', go to 'material' then 'network '. Where it says "source" changes to "Wi - Fi".

  • Server does not support remote façade panels

    Hello.  Hope someone has an idea about that.  After the computer host and update cDAQ 9139 LabView SP1 from 2013 to 2014 LabView dev suite shipped by NOR, I get the error "server does not support the remote panels" when you try to view my remote panel.  Before the update it worked normally.

    I went through everything in the list in this document, http://digital.ni.com/public.nsf/allkb/C23EF1551D8C52ED86256B140073EE2E and can't find anything that will solve the problem.

    I have rebuilt the application in 2014 of LabView (I even tried a new simple project with a single loop, one of the temperatures and a remote control), rebuilt the build spec and get the same error.

    "I've re-edited the web page and checked in the html code it refers"CODEBASE ="ftp://ftp.ni.com/support/labview/runtime/windows/2014/LVRTE2014min.exe" and I have, according to MAX, LabView DURATION 14.0.1 installed on the host machine.

    If something has changed related LabView 2014 which would cause a new firewall as this remote façade program worked great with 2013 installed?  I've already added that LabVIEW 2014 and all other related apps through the firewall, including the web server.  I am also on a machine that doesn't have a Bluecoat, our company network/internet security suite is installed.

    Thank you

    Michael

    Another possible solution to this problem - operator error.

    See one of my other posts here for details, but I made an assumption about the port numbers and what they apply to.  Two key points - the port of the web server application in the configuration of hardware web page is not the port used to access the remote panel - port is assigned in the properties of the device, the server settings remote control panel in the project.  And they cannot use the same port; This will also lead to the error "server does not support the remote panels.

    Note to the NOR - you must add this to your KB document on the resolution of this error.

    Thank you!

  • Problem using the serial port with windows 7

    Hello

    I have a modem of SIM cards (used to update remote controller of the electronic gate) that connects to my computer via the serieal port (COM1).

    The modem comes with its own piece of software that worked fine on my old computer with windows 7 (I had a similar problem, but then I just need to update the driver).

    I now have a new computer and I am unable to connect using the modem (I think I'm using the latest drivers for the serial port).

    Is it possible that I need an older version? If so, how can I get a?

    My motherboard is a GIGABYTE H81M-D2V.

    Any ideas?

    Thank you

    AVI

    Hi Avi,

    Thank you for the update on the issue.

    The UART, or Universal Asynchronous Receiver / Transmitter, is a characteristic of your microcontroller useful to connect serial data (text, numbers, etc.) to your PC. The unit switches incoming parallel information (in the microcontroller/PC) to series data that can be sent over a communication line.

    According to the description you provided it seems that your modem isn't connecting with your Windows 7 computer, then I would contact Duetech Berès your modem manufacturer, so that they provide you with the steps to set it up.

    Get back to us after contacting them and please get back to us with your question was last updated.

    Kind regards.

  • Problem using a folder next to the East on UNIX Ubuntu 10.4 with APEX listener

    Hi Forum,

    We have APEX 4.1 installed on Ubuntu 10.4 with the latest version of the APEX-listener.

    We want to achieve is that we are able to collect our Javascript extensions and css next to the folder is in a folder of our own.
    Problem now is UNIX, this doesn't seem to be possible, because we are unable to load any resource of this folder. The only solution we could come up with is to place a symbolic link in the/i/folder-pointing to the directory we want to include.
    The folder we want to include got 777 to exclude any potential problems of access to in UNIX

    Under Windows, this doesn't seem to be the case.

    If someone had a similar problem or is able to give advice on how to fix this?

    Thank you

    Jürgen

    Hi Jürgen,

    docroot
    -foo
    -J' I

    This does not work in stand-alone mode, the integrated nature fixed contexts (including + / i + and + / apex +) without the chance to bring custom contexts.
    It will run in GlassFish/Tomcat, if you deploy content correctly. You can do this by creating a war file that carries your files, but I wouldn't recommend it has static content more convenient ways.
    Tomcat has for example a context ROOT when running on a default configuration. This context can be used for static content similar to a simple HTTP server host, for example when using the htdocs of the Apache HTTP server as docroot. So you could simply copy your directory foo in the context of the ROOT and should be able to access the content using http://yourtomcathost:yourtomcatport/foo/file name .
    GlassFish is a concept similar to this: each domain has a docroot directory. As explained for Tomcat, you can simply create or copy your directory foo it so that it is available for your customers.

    If this does not work, you have a general problem with your GlassFish/Tomcat configuration, like the docroot has nothing to do with the earpiece of the APEX. I have just retestet with fees GlassFish/Tomcat on Ubuntu 8.04 LTS (Server Edition) as follows:
    1 download the http://glassfish.java.net/ zip or Tomcat mirror packages respectively.
    2 unzip the package
    3. create the directory 'foo' docroot (for GlassFish) and ROOT (for Tomcat)
    4. create the file 'bar' in 'foo '.
    5. start the server instance
    6 use a client remote access http://mybox:8080/foo/bar.txt and got the file.

    How did you install your GlassFish/Tomcat on your Ubuntu?
    Whatever it is, if you tried the docroot/ROOT approach and doesn't, you can always try the war file deployment. Maybe your GlassFish/Tomcat instance has disabled the docroot/ROOT context for security reasons.

    Note that you can have both, that is, you cannot use the war with framework file + / foo + and have always a + / foo + subdirectory in your docroot/ROOT.

    -Udo

  • Can I use the supplied remote Commander RMT-835 with the 18-200 on NEX-VG30 powerzoom?

    The NEX VG30 comes with the SALT-PZ18200, which has an electronic zoom that can be controlled by a lever on the lens and the camera. The camera also comes with the IR remote control RMT-835, which has a zoom button (which works on the other handycam to control the zoom). Now can I use the RMT-835 to zoom with the SALT-P18200 on the VG30 NEX? Can someone try that already has the VG30?

    Thank you

    Michael

    I tested the SELP-18200 on NEX-VG30 zoom control, and the RMT-835 zoom buttons can control the motorized zoom.

    By default, the remote control and the camera body zoom controls activate digital zoom. You must go on [MENU] - [camera/mic] - [Zoom lever] and select [Power Zoom] so that you can control the power via the remote control zoom and the camera body.

    If my post answered your question, please mark it as "accept as a Solution.

  • Remote access VPN with ASA 5510 by using the DHCP server

    Hello

    Can someone please share your knowledge to help me find out why I'm not able to receive an IP address on the remote access VPN connection so that I can get an IP local pool DHCP?

    I'm trying to set up remote access VPN with ASA 5510. It works with dhcp local pool but does not seem to work when I tried to use an existing DHCP server. It is tested in an internal network as follows:

    !

    ASA Version 8.2 (5)

    !

    interface Ethernet0/1

    nameif inside

    security-level 100

    IP 10.6.0.12 255.255.254.0

    !

    IP local pool testpool 10.6.240.150 - 10.6.240.159 a mask of 255.255.248.0. (worked with it)

    !

    Route inside 0.0.0.0 0.0.0.0 10.6.0.1 1

    !

    Crypto ipsec transform-set esp-3des esp-md5-hmac FirstSet

    life crypto ipsec security association seconds 28800

    Crypto ipsec kilobytes of life - safety 4608000 association

    Crypto-map dynamic dyn1 1jeu transform-set FirstSet

    dynamic mymap 1 dyn1 ipsec-isakmp crypto map

    mymap map crypto inside interface

    crypto ISAKMP allow inside

    crypto ISAKMP policy 1

    preshared authentication

    3des encryption

    sha hash

    Group 2

    life 43200

    !

    VPN-addr-assign aaa

    VPN-addr-assign dhcp

    !

    internal group testgroup strategy

    testgroup group policy attributes

    DHCP-network-scope 10.6.192.1

    enable IPSec-udp

    IPSec-udp-port 10000

    !

    username testlay password * encrypted

    !

    tunnel-group testgroup type remote access

    tunnel-group testgroup General attributes

    strategy-group-by default testgroup

    DHCP-server 10.6.20.3

    testgroup group tunnel ipsec-attributes

    pre-shared key *.

    !

    I got following output when I test connect to the ASA with Cisco VPN client 5.0

    Jan 16 15:39:21 [IKEv1]: IP = 10.15.200.108, IKE_DECODE RECEIPT Message (msgid = 0) with payloads: (4) SA (1) + KE + NUNCIO (10) + ID (5), HDR + VENDO

    4024 bytesR copied in 3,41 0 seconds (1341 by(tes/sec) 13) of the SELLER (13) seller (13) + the SELLER (13), as well as the SELLER (13) ++ (0) NONE total length: 853

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, SA payload processing

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, processing ke payload

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, payload processing ISA_KE

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, nonce payload processing

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, payload processing ID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, payload processing VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, received xauth V6 VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, payload processing VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, DPD received VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, payload processing VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, received Fragmentation VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, IKE Peer included IKE fragmentation capability flags: Main Mode: real aggressive Mode: false

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, payload processing VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, received NAT-Traversal worm 02 VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, payload processing VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: IP = 10.15.200.108, the customer has received Cisco Unity VID

    Jan 16 15:39:21 [IKEv1]: IP = 10.15.200.108, connection landed on tunnel_group testgroup

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, IKE SA payload processing

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, IKE SA proposal # 1, turn # 9 entry overall IKE acceptable matches # 1

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, build the payloads of ISAKMP security

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, building ke payload

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, building nonce payload

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, Generating keys for answering machine...

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, construction of payload ID

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, build payloads of hash

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, calculation of hash for ISAKMP

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, build payloads of Cisco Unity VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, constructing payload V6 VID xauth

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, building dpd vid payload

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, constructing the payload of the NAT-Traversal VID ver 02

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, NAT-discovery payload construction

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, calculation of hash discovered NAT

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, NAT-discovery payload construction

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, calculation of hash discovered NAT

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, construction of Fragmentation VID + load useful functionality

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, build payloads VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, send Altiga/Cisco VPN3000/Cisco ASA GW VID

    Jan 16 15:39:21 [IKEv1]: IP = 10.15.200.108, IKE_DECODE SEND Message (msgid = 0) with payloads: HDR SA (1) KE (4) NUNCIO (10) + ID (5) + HASH (8) + SELLER (13) + the SELLER (13) + the SELLER (13) + the SELLER (13) NAT - D (130) + NAT - D (130) of the SELLER (13) + the seller (13) + NONE (0) total length: 440

    Jan 16 15:39:21 [IKEv1]: IP = 10.15.200.108, IKE_DECODE RECEIPT Message (msgid = 0) with payloads: HDR + HASH (8) + NOTIFY (11) + NAT - D (130) + NAT - D (130) of the SELLER (13) + the seller (13) + NONE (0) overall length: 168

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, processing hash payload

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, calculation of hash for ISAKMP

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, processing notify payload

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, payload NAT-discovery of treatment

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, calculation of hash discovered NAT

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, payload NAT-discovery of treatment

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, calculation of hash discovered NAT

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, payload processing VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, useful treatment IOS/PIX Vendor ID (version: 1.0.0 capabilities: 00000408)

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, payload processing VID

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, the customer has received Cisco Unity VID

    Jan 16 15:39:21 [IKEv1]: Group = testgroup, I

    [OK]

    KenS-mgmt-012 # P = 10.15.200.108, status of automatic NAT detection: remote end is NOT behind a NAT device this end is NOT behind a NAT device

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, empty building hash payload

    Jan 16 15:39:21 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, build payloads of hash qm

    Jan 16 15:39:21 [IKEv1]: IP = 10.15.200.108, IKE_DECODE SEND Message (msgid = d4ca48e4) with payloads: HDR + HASH (8) + ATTR (14) + (0) NONE total length: 72

    Jan 16 15:39:26 [IKEv1]: IP = 10.15.200.108, IKE_DECODE RECEIPT Message (msgid = d4ca48e4) with payloads: HDR + HASH (8) + ATTR (14) + (0) NONE total length: 87

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, process_attr(): enter!

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, IP = 10.15.200.108, transformation MODE_CFG response attributes.

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKEGetUserAttributes: primary DNS = authorized

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKEGetUserAttributes: secondary DNS = authorized

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKEGetUserAttributes: = authorized primary WINS

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKEGetUserAttributes: = authorized secondary WINS

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKEGetUserAttributes: Compression IP = disabled

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKEGetUserAttributes: Split Tunneling political = disabled

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKEGetUserAttributes: setting Proxy browser = no - modify

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKEGetUserAttributes: browser Local Proxy bypass = disable

    Jan 16 15:39:26 [IKEv1]: Group = testgroup, Username = testlay, IP = 10.15.200.108, (testlay) the authenticated user.

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, empty building hash payload

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, build payloads of hash qm

    Jan 16 15:39:26 [IKEv1]: IP = 10.15.200.108, IKE_DECODE SEND Message (msgid = 6b1b471) with payloads: HDR + HASH (8) + ATTR (14) + (0) NONE total length: 64

    Jan 16 15:39:26 [IKEv1]: IP = 10.15.200.108, IKE_DECODE RECEIPT Message (msgid = 6b1b471) with payloads: HDR + HASH (8) + ATTR (14) + NONE (0) overall length: 60

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, process_attr(): enter!

    Jan 16 15:39:26 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, cfg ACK processing attributes

    Jan 16 15:39:27 [IKEv1]: IP = 10.15.200.108, IKE_DECODE RECEIPT Message (msgid = 49ae1bb8) with payloads: HDR + HASH (8) + ATTR (14) + (0) NONE total length: 182

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, process_attr(): enter!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, treatment cfg request attributes

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for the IPV4 address!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for the IPV4 network mask!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for DNS server address.

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for the address of the WINS server.

    Jan 16 15:39:27 [IKEv1]: Group = testgroup, Username = testlay, IP = 10.15.200.108, transaction mode attribute unhandled received: 5

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for the banner!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for setting save PW!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: receipt of request for default domain name!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for Split-Tunnel list!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for split DNS!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for PFS setting!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for the Proxy Client browser setting!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for the list of backup peer ip - sec!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for setting disconnect from the Client Smartcard Removal!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for the Version of the Application.

    Jan 16 15:39:27 [IKEv1]: Group = testgroup, Username = testlay, IP = 10.15.200.108, Type of Client: Windows NT Client Application Version: 5.0.07.0440

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for FWTYPE!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: request received for the DHCP for DDNS hostname is: DEC20128!

    Jan 16 15:39:27 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, MODE_CFG: application received for the UDP Port!

    Jan 16 15:39:32 [IKEv1]: Group = testgroup, Username = testlay, IP = 10.15.200.108, in double Phase 2 detected packets.  No last packet retransmit.

    Jan 16 15:39:37 [IKEv1]: IP = 10.15.200.108, IKE_DECODE RECEIPT Message (msgid = b04e830f) with payloads: HDR + HASH (8) + NOTIFY (11) + (0) NONE total length: 84

    Jan 16 15:39:37 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, processing hash payload

    Jan 16 15:39:37 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, processing notify payload

    Jan 16 15:39:37 [IKEv1]: Group = testgroup, Username = testlay, IP = 10.15.200.108, in double Phase 2 detected packets.  No last packet retransmit.

    Jan 16 15:39:39 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKE has received the response from type [] at the request of the utility of IP address

    Jan 16 15:39:39 [IKEv1]: Group = testgroup, Username = testlay, IP = 10.15.200.108, cannot get an IP address for the remote peer

    Jan 16 15:39:39 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, case of mistaken IKE TM V6 WSF (struct & 0xd8030048) , : TM_DONE, EV_ERROR--> TM_BLD_REPLY, EV_IP_FAIL--> TM_BLD_REPLY NullEvent--> TM_BLD_REPLY, EV_GET_IP--> TM_BLD_REPLY, EV_NEED_IP--> TM_WAIT_REQ, EV_PROC_MSG--> TM_WAIT_REQ, EV_HASH_OK--> TM_WAIT_REQ, NullEvent

    Jan 16 15:39:39 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, case of mistaken IKE AM Responder WSF (struct & 0xd82b6740) , : AM_DONE, EV_ERROR--> AM_TM_INIT_MODECFG_V6H, EV_TM_FAIL--> AM_TM_INIT_MODECFG_V6H NullEvent--> AM_TM_INIT_MODECFG, EV_WAIT--> AM_TM_INIT_XAUTH_V6H, EV_CHECK_QM_MSG--> AM_TM_INIT_XAUTH_V6H, EV_TM_XAUTH_OK--> AM_TM_INIT_XAUTH_V6H NullEvent--> AM_TM_INIT_XAUTH_V6H, EV_ACTIVATE_NEW_SA

    Jan 16 15:39:39 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, IKE SA AM:bd3a9a4b ending: 0x0945c001, refcnt flags 0, tuncnt 0

    Jan 16 15:39:39 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, sending clear/delete with the message of reason

    Jan 16 15:39:39 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, empty building hash payload

    Jan 16 15:39:39 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, constructing the payload to delete IKE

    Jan 16 15:39:39 [IKEv1 DEBUG]: Group = testgroup, Username = testlay, IP = 10.15.200.108, build payloads of hash qm

    Jan 16 15:39:39 [IKEv1]: IP = 10.15.200.108, IKE_DECODE SEND Message (msgid = 9de30522) with payloads: HDR HASH (8) + DELETE (12) + (0) NONE total length: 80

    Kind regards

    Lay

    For the RADIUS, you need a definition of server-aaa:

    Protocol AAA - NPS RADIUS server RADIUS

    AAA-server RADIUS NPS (inside) host 10.10.18.12

    key *.

    authentication port 1812

    accounting-port 1813

    and tell your tunnel-group for this server:

    General-attributes of VPN Tunnel-group

    Group-NPS LOCAL RADIUS authentication server

    --
    Don't stop once you have upgraded your network! Improve the world by lending money to low-income workers:
    http://www.Kiva.org/invitedBy/karsteni

  • Hello everyone, today I am trying to install adobe cc desktop, but I can't. What is the problem? I use firefox because I'm not with the chrome download

    Hello everyone, today I am trying to install adobe cc desktop, but I can't. What is the problem? I use firefox because I'm not with the chrome download

    Please see system requirements | Adobe Illustrator

Maybe you are looking for