Allowing files to be pushed to one client at a time?

Greetings,
I am looking to administrate about 20 computers (remotely) with ARD, and I am going to want to push files out to them. The 'copy files' function is spectacular, but since I have 20 remote computers, I don't want to copy the files to all of them at once. That would absolutely annihilate my bandwidth, and cause some serious problems here at the shop. (as well as cause some of the uploads to fail I would imagine)
I have been looking over the 'copy files' settings, and unfortunately I haven't seen a setting as to if you want to copy all the files to all the computers at once, or if you want to copy the files to all the computers one at a time.
Or perhaps there is another kind of workaround for this? Thanks!
David

Hi
You could do it this way.
In the Manage Menu select Copy Items. Add a client workstation you're interested in and click the Schedule button. Define a time of your choosing click the Save button and save it as a Task. Do this for each client workstation in turn. To get an idea of a suitable time interval test by doing a straight forward copy to a client workstation first. Time the amount of time it takes. If it takes under 5 minutes define your schedule for each individual client workstation at 5 minutes intervals.
Tony

Similar Messages

  • Is there a datatype that allows me to store more than one item at a time

    Hello Everyone,
    Is there a datatype that allows me to store more than one item at a time , in a column in a row?
    I have to prepare a monthly account purchase system. Basically in this system a customer purchases items in an entire month as and when required on credit and then pays at the end of the month to clear the dues. So, i need to search the item from the inventory and then add it to the customer. So that when i want to see all the items purchased by a customer in the current month i get to see them. Later i calculate the bill and then ask him to pay and flushout old items which customer has purchased.
    I am having great difficulty in preparing the database.
    Please can anyone guide me! i have to finish this project in a weeks time.
    Item Database:
    SQL> desc items;
    Name Null? Type
    ITEMID VARCHAR2(10)
    ITEMCODE VARCHAR2(10)
    ITEMPRICE NUMBER(10)
    ITEMQUAN NUMBER(10)
    Customer Database:
    SQL> desc customerdb;
    Name Null? Type
    CUSTID VARCHAR2(10)
    CUSTFNAME VARCHAR2(20)
    CUSTLNAME VARCHAR2(20)
    CUSTMOBNO NUMBER(10)
    CUSTADD VARCHAR2(20)
    I need to store for every customer the items he has purchased in a month. But if i add a items purchased by a customer to the customer table entries look this.
    SQL> select * from customerdb;
    CUSTID CUSTFNAME CUSTLNAME CUSTMOBNO CUSTADD ITEM ITEMPRICE ITEMQUANTITY
    123 abc xyz 9988556677 a1/8,hill dales soap 10 1
    123 abc xyz 9988556677 " toothbrush 18 1
    I can create a itempurchase table similar to above table without columns custfname,csutlnamecustmobno,custadd
    ItemPurchaseTable :
    CUSTID ITEM ITEMPRICE ITEMQUANTITY
    123 soap 10 1
    123 toothbrush 18 1
    ill just have it as follows. But still the CUSTID FK from CustomerDB repeats for every row. I dont know how to solve this issue. Please can anyone help me.
    I need to map 1 customer to the many items he has purchased in a month.
    Edited by: Yukta Lolap on Oct 8, 2012 10:58 PM
    Edited by: Yukta Lolap on Oct 8, 2012 11:00 PM

    You must seriously read and learn about Normalization of tables; It improves your database design (at times may increase or decrease performance, subjective cases) and eases the Understanding efforts for a new person.
    See the below tables and compare to the tables you have created
    create table customers
      customer_id       number      primary key,
      fname             varchar2(50)  not null,
      mname             varchar2(50),
      lname             varchar2(50)  not null,
      join_date         date          default sysdate not null,
      is_active         char(1)     default 'N',
      constraint chk_active check (is_active in ('Y', 'N')) enable
    create table customer_address
      address_id        number      primary key,
      customer_id       number      not null,
      line_1            varchar2(100)   not null,
      line_2            varchar2(100),
      line_3            varchar2(100),
      city              varchar2(100)   not null,
      state             varchar2(100)   not null,
      zip_code          number          not null,
      is_active         char(1)         default 'N' not null,
      constraint chk_add_active check (is_active in ('Y', 'N')),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    create table customer_contact
      contact_id        number      primary key,
      address_id        number      not null,
      area_code         number,
      landline          number,
      mobile            number,
      is_active         char(1)   default 'N' not null,
      constraint chk_cont_active check (is_active in ('Y', 'N'))
      constraint fk_add_id foreign key (address_id) references customer_address(address_id)
    create table inventory
      inventory_id          number        primary key,
      item_code             varchar2(25)    not null,
      item_name             varchar2(100)   not null,
      item_price            number(8, 2)    default 0,
      item_quantity         number          default 0,
      constraint chk_item_quant check (item_quantity >= 0)
    );You may have to improvise and adapt these tables according to your data and design to add or remove Columns/Constraints/Foreign Keys etc. I created them according to my understanding.
    --Edit:- Added Purchases table and sample data;
    create table purchases
      purchase_id           number        primary key,
      purchase_lot          number        unique key  not null,     --> Unique Key to map all the Purchases, at a time, for a customer
      customer_id           number        not null,
      item_code             number        not null,
      item_price            number(8,2)   not null,
      item_quantity         number        not null,
      discount              number(3,1)   default 0,
      purchase_date         date          default sysdate   not null,
      payment_mode          varchar2(20),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    insert into purchases values (1, 1001, 1, 'AZ123', 653, 10, 0, sysdate, 'Cash');
    insert into purchases values (2, 1001, 1, 'AZ124', 225.5, 15, 2, sysdate, 'Cash');
    insert into purchases values (3, 1001, 1, 'AZ125', 90, 20, 3.5, sysdate, 'Cash');
    insert into purchases values (4, 1002, 2, 'AZ126', 111, 10, 0, sysdate, 'Cash');
    insert into purchases values (5, 1002, 2, 'AZ127', 100, 10, 0, sysdate, 'Cash');
    insert into purchases values (6, 1003, 1, 'AZ123', 101.25, 2, 0, sysdate, 'Cash');
    insert into purchases values (7, 1003, 1, 'AZ121', 1000, 1, 0, sysdate, 'Cash');Edited by: Purvesh K on Oct 9, 2012 12:22 PM (Added Price Column and modified sample data.)

  • URGENT: New JAR file NOT being pushed to web clients.

    Greetings...
    When our web app first came to market, some of our customers were still using a dial-up connection. Therefore, since one of our web pages uses an applet, it was decided to ship the necessary JAR files to clients on an installation CD, rather than burden our dialup customer with having the JAR files pushed out to them over the line. The jar files are installed in the C:\Program Files\JavaSoft\JRE\1.3\lib\ext directory on the client computers.
    Don't ask why, but we are now attempting to have our web site push out a new JAR file to just one of our clients, but the problem I'm running into is that if the OLD jar file already exists in the C:\Program Files\JavaSoft\JRE\1.3\lib\ext directory, the NEW jar file isn't pushed out by the website. My understanding was that the system would automatically detect if the JAR file on the client was older than the JAR file on the server and would then push the newer JAR file out to the client, but obviously, I'm missing something.
    Any help/suggestions you can provide would be greatly appreciated. Following is the kludgy ASP code for this...
    <%szCustomer = getCustomer();%>
    <%if (szCustomer="SccTest") {%>
    <!-- NEW CODE: Push out the NEW JAR file with the meters to feet change. -->
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="600" height="400" name="SccMapplet"
    codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0" ID="IMSMap" VIEWASTEXT>
    <PARAM NAME="code" VALUE="com.scc.mapplet.SccMapplet">
    <param name="archive" value="SccMapplet.jar,xml.jar,iiimp.jar,jai_codec.jar,jai_core.jar,mlibwrapper_jai.jar">
    <PARAM NAME="scriptable" VALUE="true">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
    <PARAM NAME="WebAXL" VALUE="/EweData/<%=getCustomer()%>.axl">
    <PARAM NAME="Session" VALUE="<%=SCCSession.SessionID%>">
    <COMMENT>
    <EMBED type="application/x-java-applet;version=1.3" width="600" height="400"
    code="com.scc.mapplet.SccMapplet" archive="SccMapplet.jar,xml.jar,iiimp.jar,jai_codec.jar,jai_core.jar,mlibwrapper_jai.jar"
    pluginspage="http://java.sun.com/products/plugin/1.3/plugin-install.html">
    <NOEMBED>
    </COMMENT>
    No Java 2 SDK, Standard Edition v 1.3 support for APPLET!!
    </NOEMBED></EMBED>
    </OBJECT>
    <%} else {%>
    <!-- OLD CODE: Use the JAR file already installed on C:\Program Files\JavaSoft\JRE\1.3\lib\ext -->
    <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width=600 height=400 ID="IMSMap" name="SccMapplet" VIEWASTEXT>
    <param NAME="code" VALUE="com/scc/mapplet/SccMapplet">
    <param NAME="name" VALUE="IMSMap">
    <param NAME="SCRIPTABLE" VALUE="TRUE">
    <param NAME="type" VALUE="application/x-java-applet;version=1.2">
    <PARAM NAME="WebAXL" VALUE="/EweData/<%=getCustomer()%>.axl">
    <PARAM NAME="Session" VALUE="<%=SCCSession.SessionID%>">
    <comment>
    <embed type="application/x-java-applet;version=1.2" width="600" height="480" code="com/esri/ae/applet/IMSMap" name="IMSMap">
    <noembed>
    </COMMENT>
    No JDK 1.2 support for APPLET!!
    </noembed></embed>
    </object>
    <%}%>

    I guess the problem is, that your local jar file's classes copied to the JRE's ext directory have higher priority. The JRE does not store your applet jar locally and so does not overwrite anything you may have installed, it only executes the jar file given by the browser which may cache it or not.
    Why don't you use the Java Webstart technolgy? It's pretty simple to use it. Customers would have to download every new jar version only once and Webstart will take care that the local version is up-to-date every time your app is started.

  • File open on more than one computer at a time

    I maintain a network of four Macs (Cube, G4 Tower, Mini, and G5 Tower) all running OS 10.4.11. Recently two people working on the network discovered that they both had a certain file open at the same time. In order to determine the extent of the problem, on each computer I created and kept open a TextEdit file. I then attempted to open each TextEdit file from the three computers on which the file was not stored. To my dismay I received no error or warning message of any sort. I was able to open all four files on all four computers at the same time!
    Each of the computers has a single user, and each computer is logged into the other computers as the user on that computer (i.e., each guest is logged in as the host). I wonder if that might be the source of the trouble.
    I never noticed any file being open on more than one computer at a time when all the computers were running 10.3.9, only after I upgraded to 10.4.
    Any ideas?

    This is absolutely standard behavior and I don't expect this to change any time soon.
    Let me try to explain based on a model of a file stored on Server1 and being accessed by Client1 and Client2:
    Here's what's happening:
    Client1 connects to the server and opens the file for reading.
    Client1 reads the file and closes it
    Client2 connects to the server and opens the file for reading.
    Client2 reads the file and closes it
    Since Client1 closed the file there's nothing to indicate to Client2 that the document is in use anywhere else because, in fact, it isn't.
    There's nothing on the server that knows whether Client1 opened the file to look at it, to copy it, to back it up to some other media or to actually edit it. It is only that last step that should prevent another client from opening the file.
    If you think about it, that makes perfect sense. If you copy the file over the network to Client1 you do not want the server to think that Client1 has an exclusive hold on that file and to prevent Client2 from opening it.
    The only time the file is in use is a) when the file is being read, and b) when the file is being saved. When it's just being viewed the client doesn't have an active hold on the file.
    The actual fix here is for the application to set a flag that the file is in use and for the server to honor that flag. It's supported by the networking protocols but it's rarely implemented in applications except those that expect a multi-user setup.

  • Is there a way have a file only accessable by only one user at a time

    Here's the question...
    I want to set up a file so that it can only be accessed by only one person at a time - is there any way to do this?

    Turn off fast user switching and autologin, making all users log off before other users can use the machine.

  • L2TP VPN Server only accepts one client at a time

    We have an ISA570 on Site 1 with the following Network Config:
    192.168.100.XXX
    255.255.255.0
    192.168.100.254 (GW)
    ISA570
    ISP Modem in Bridge Mode
    So let us call my location right now as site 2. Although the network setup does not matter, let me just state it.
    192.168.101.XXX
    255.255.255.0
    192.168.101.254 (GW)
    Cisco RV042
    ISP Modem in Bridge Mode
    L2TP Client Network Pool:
    192.168.103.100 - 192.168.100.200
    255.255.255.0
    DNS1 192.168.100.254
    =======================================================================================
    So here comes the situation
    Client  1 with IP address of 192.168.101.24 connects to Site 1 via L2TP. He  uses this VPN Tunnel for a desktop application which is hosted at site  1.
    Client 2 with IP address of 192.168.101.17 connects  to Site 1 via L2TP but is unsuccessful. Screen1.jpg below shows the  Windows VPN Error.
    Screen1.jpg
    I can not post my configs as of now because the WAN1 of site 1 is very congested. For now I will post the guides which I followed.
    http://www.cisco.com/en/US/docs/security/small_business_security/isa500/administration/guide/ISA500_VPN.html#wp1393916
    http://www.cisco.com/en/US/docs/security/small_business_security/isa500/administration/guide/ISA500_VPN.html#wp1479596
    What am I missing here?

    Hi Dan,
    The site-to-site VPN tunnel should still work with those settings.  For the IPSec VPN Client, we have the Cisco VPN Client that should work.  There should be a copy of it on the CD that came with the ISA500. 
    Here is a link that has information on setting up the Remote Access VPN on the ISA500:
    http://www.cisco.com/en/US/docs/security/small_business_security/isa500/technical_reference/vpn/Configuring_VPN_with_Cisco_ISA500_Series_Security_Appliances.pdf
    The section 'Configuration Examples of EzVPN, SSLVPN and Site-to-Site Between Cisco ISA500 Appliances' has an example at the beginning.
    Let me know if that helps.
    Thanks,
    Brandon

  • Transfer all music from PC to iTunes, but add file to library only does one album at a time

    I want to add all music on my PC to iTunes, but if I go to the menu and add file to library I would have to do this for each album individually and i have well over 100 albums.  That is way too time consuming. 
    Is there a way for it to search automatically?

    Enable the menu bar with CTRL+B or open temporarily with ALT, then use File > Add folder to library.
    tt2

  • My old version of PhotoShop allowed me to open more than one picture at a time.  I want to create a poster using several pictures.  I used to be able to paste one onto another.  PhotoShop Elements 12 is driving me crazy because I cannot figure out how to

    Help me.

    Hi Suzkas,
    I was new to mac a short time ago and I had frustrations in the learning curve especially as I was so used to working with PC.
    If you look at the top left of the screen you will see the words SAFARI next to the apple logo. if not then either open safari or click on the window and the mac will then show safari at the top. If you now click on FILE you can select NEW WINDOW or NEW TAB as you wish. I often use new tab and switch between them. If you go to VIEW and select CUSTOMISE TOOLBAR you can drag an icon to the top of the safari window and you won't have to keep going to the menu to add a new tab. I will sometimes select new window to keep something separate from my other work.
    If you close down a window you will often lose your place, but using the tab system you will leave the window active unless you select the cross to terminate. If you have a separate window open you can select the orange blob (between the red and green at the top) and the window will slide down to the dock and stay there, active, for you to return and continue.
    Hope this help, stay with it, go see the instore staff and pretty soon you wont look back
    PS I have PARALLELLS6 running with a copy of windows 7 on my mac. This means that I can switch to microsoft if I want to. However, with office for mac installed I rarely need to now, the only time I ever open windows is for an application that has no mac version.

  • Dileama: Does my server accept more than one client

    i created a simple server and a client app. but i am unable resolve wether the server is going to accept more than single client. if not, then should i implement threads to accept more than one client on my server.

    i created a simple server and a client app. congrats!
    but i am unable resolve wether the server is going to accept
    more than single client. Not sure what you mean here.... Do you mean "Should I allow it to accept more than one client at a time?" If so, then that's up to you, isn't it?
    if not, then should i implement threads to accept more than
    one client on my server.If so, you mean. Yes, if you want multiple clients to connect, you have the server socket accept the socket connection from the client and pass that socket to a new thread which handles the connection, then the server socket would be free to accept another connection.
    I'm only familiar with the old I/O package, not the New I/O stuff, so this is a bit old school:
    ServerSocket ss = new ServerSocket(1234);
    while(true) {
       Socket s = ss.accept();
       newClient(s);
    private void newClient(final Socket s) {
       Thread t = new Thread() {
          public void run() {
             try {
                BufferedReader in = new BufferedReader(new InputStreamReader(s.getInputStream()));
                PrintWriter out = new PrintWriter(new OutputStreamWriter(s.getOutputStream()));
                out.println("yes?  what is it?");
                out.flush();
                String line;
                while((line = in.readLine()) != null) {
                   out.println("ha ha, you said '" + line + "'");
                   out.flush();
             } catch(Exception e) {
                try {
                   s.close();
                } catch(Exception e) {
       t.start();
    }

  • Can only connect one user at a time via VPN?

    Hi, long-term Mac user but new to OS X Server. Dug thru the forums quite a bit but couldn't find an answer to this one - hopefully I wasn't searching with the wrong keywords.
    Installed OS X Server 10.6 on a MacBook (white, 1 generation back) at the office. Sits behind an Airport Extreme, which is connected to Comcast. Other machines at the office are NOT routed through the Server, but rather connect directly to the Airport Extreme for internet access. I've set up server.mydomainname.com to point to our Comcast address, and I am able to connect via VPN to the server without any problems, and access the server using the server.mydomainname.com address which I pointed to my Comcast IP address, as long as I check "Send all traffic over VPN connection" on my client.
    However, when I'm logged in via VPN on one computer, and then log in via VPN on another computer (with the same UID or a different one), the first one loses all connectivity through the VPN - it's as if it had been logged off.
    In Server Admin, under the Settings|Network tabs, I have Computer Name set up as "theserver", and Local Hostname as "theserver" (so I can access via theserver.private). VPN is set up to enable L2TP over IPsec, sharing ranges 10.0.1.200 thru 10.0.1.220; no load balancing, no PPTP. Client DNS servers is set to 10.0.1.29.
    Any ideas as to why I can only connect with one client at a time?

    Thanks. I didn't see anything interesting, but then again I'm not up on VPN details. Here's the scenario:
    First, I logged in as "user1", and I can use the VPN.
    Then, I logged in as "user2", and I can use the VPN with user2, but user1 is no longer able to do anything over the VPN.
    Then I hung up with user2, but user1 still can't see anything over the VPN.
    Then I hung up and reconnected with user1, and user1 can use the VPN again.
    Here's part of the log for this activity. I've replaced potentially identifying info with "XYZ" for safety. Appreciate any thoughts on this!
    Tue Oct 19 07:33:08 2010 : L2TP received ICCN
    Tue Oct 19 07:33:08 2010 : L2TP connection established.
    Tue Oct 19 07:33:08 2010 : using link 1
    Tue Oct 19 07:33:08 2010 : Using interface ppp1
    Tue Oct 19 07:33:08 2010 : Connect: ppp1 <--> socket[34:18]
    Tue Oct 19 07:33:08 2010 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic XYZ> <pcomp> <accomp>]
    Tue Oct 19 07:33:08 2010 : rcvd [LCP ConfReq id=0x1 <asyncmap 0x0> <magic XYZ> <pcomp> <accomp>]
    Tue Oct 19 07:33:08 2010 : lcp_reqci: returning CONFACK.
    Tue Oct 19 07:33:08 2010 : sent [LCP ConfAck id=0x1 <asyncmap 0x0> <magic XYZ> <pcomp> <accomp>]
    Tue Oct 19 07:33:08 2010 : rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic XYZ> <pcomp> <accomp>]
    Tue Oct 19 07:33:08 2010 : sent [LCP EchoReq id=0x0 magic=XYZ]
    Tue Oct 19 07:33:08 2010 : sent [CHAP Challenge id=0x18 <XYZ>, name = "myserver.private"]
    Tue Oct 19 07:33:08 2010 : rcvd [LCP EchoReq id=0x0 magic=XYZ]
    Tue Oct 19 07:33:08 2010 : sent [LCP EchoRep id=0x0 magic=XYZ]
    Tue Oct 19 07:33:08 2010 : rcvd [LCP EchoRep id=0x0 magic=XYZ]
    Tue Oct 19 07:33:08 2010 : rcvd [CHAP Response id=0x18 <XYZ>, name = "user2"]
    Tue Oct 19 07:33:08 2010 : sent [CHAP Success id=0x18 "S=XYZ M=Access granted"]
    Tue Oct 19 07:33:08 2010 : CHAP peer authentication succeeded for user2
    Tue Oct 19 07:33:08 2010 : DSAccessControl plugin: User 'user2' authorized for access
    Tue Oct 19 07:33:08 2010 : sent [IPCP ConfReq id=0x1 <addr 10.0.1.29>]
    Tue Oct 19 07:33:08 2010 : sent [ACSCP ConfReq id=0x1]
    Tue Oct 19 07:33:08 2010 : rcvd [IPCP ConfReq id=0x1 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns3 0.0.0.0>]
    Tue Oct 19 07:33:08 2010 : ipcp: returning Configure-NAK
    Tue Oct 19 07:33:08 2010 : sent [IPCP ConfNak id=0x1 <addr 10.0.1.213> <ms-dns1 10.0.1.29> <ms-dns3 10.0.1.29>]
    Tue Oct 19 07:33:08 2010 : rcvd [IPV6CP ConfReq id=0x1 <addr XYZ>]
    Tue Oct 19 07:33:08 2010 : Unsupported protocol 0x8057 received
    Tue Oct 19 07:33:08 2010 : sent [LCP ProtRej id=0x2 80 47 01 01 00 0f 01 0a 02 1b 63 ff fe a0 dd da]
    Tue Oct 19 07:33:08 2010 : rcvd [ACSCP ConfReq id=0x1 <ms-dns1 0.0.0.1> <ms-dns1 0.0.0.1>]
    Tue Oct 19 07:33:08 2010 : sent [ACSCP ConfRej id=0x1 <ms-dns1 0.0.0.1>]
    Tue Oct 19 07:33:08 2010 : rcvd [IPCP ConfAck id=0x1 <addr 10.0.1.29>]
    Tue Oct 19 07:33:08 2010 : rcvd [ACSCP ConfAck id=0x1]
    Tue Oct 19 07:33:08 2010 : rcvd [IPCP ConfReq id=0x2 <addr 10.0.1.213> <ms-dns1 10.0.1.29> <ms-dns3 10.0.1.29>]
    Tue Oct 19 07:33:08 2010 : ipcp: returning Configure-ACK
    Tue Oct 19 07:33:08 2010 : sent [IPCP ConfAck id=0x2 <addr 10.0.1.213> <ms-dns1 10.0.1.29> <ms-dns3 10.0.1.29>]
    Tue Oct 19 07:33:08 2010 : ipcp: up
    Tue Oct 19 07:33:08 2010 : l2tpwaitinput: Address added. previous interface setting (name: en0, address: 10.0.1.29), current interface setting (name: ppp1, family: PPP, address: 10.0.1.29, subnet: 255.0.0.0, destination: 10.0.1.213).
    Tue Oct 19 07:33:08 2010 : found interface en0 for proxy arp
    Tue Oct 19 07:33:08 2010 : local IP address 10.0.1.29
    Tue Oct 19 07:33:08 2010 : remote IP address 10.0.1.213
    Tue Oct 19 07:33:08 2010 : l2tpwaitinput: Address added. previous interface setting (name: en0, address: 10.0.1.29), current interface setting (name: ppp1, family: PPP, address: 10.0.1.29, subnet: 255.0.0.0, destination: 10.0.1.213).
    Tue Oct 19 07:33:08 2010 : rcvd [ACSCP ConfReq id=0x2 <ms-dns1 0.0.0.1>]
    Tue Oct 19 07:33:08 2010 : sent [ACSCP ConfAck id=0x2 <ms-dns1 0.0.0.1>]
    Tue Oct 19 07:33:08 2010 : sent [ACSP data <payload len 26, packet seq 0, CI_DOMAINS, flags: START END REQUIRE-ACK>
    <domain: name XYZ>]
    Tue Oct 19 07:33:08 2010 : rcvd [IP data <src addr 10.0.1.213> <dst addr 255.255.255.255> <BOOTP Request> <type INFORM> <client id 0x08000000010000> <parameters = 0x6 0x2c 0x2b 0x1 0xf9 0xf>]
    Tue Oct 19 07:33:08 2010 : sent [IP data <src addr 10.0.1.29> <dst addr 10.0.1.213> <BOOTP Reply> <type ACK> <server id 0x0a00011d> <domain name "XYZ">]
    Tue Oct 19 07:33:08 2010 : rcvd [ACSP data <payload len 0, packet seq 0, CI_DOMAINS, flags: ACK>]
    Tue Oct 19 07:33:34 2010 : rcvd [LCP TermReq id=0x2 "User request"]
    Tue Oct 19 07:33:34 2010 : LCP terminated by peer (User request)
    Tue Oct 19 07:33:34 2010 : ipcp: down
    Tue Oct 19 07:33:34 2010 : l2tpwaitinput: Address deleted. previous interface setting (name: en0, address: 10.0.1.29), deleted interface setting (name: ppp1, family: PPP, address: 10.0.1.29, subnet: 255.0.0.0, destination: 10.0.1.213).
    Tue Oct 19 07:33:34 2010 : sent [LCP TermAck id=0x2]
    Tue Oct 19 07:33:34 2010 : l2tpwaitinput: Address deleted. previous interface setting (name: en0, address: 10.0.1.29), deleted interface setting (name: ppp1, family: PPP, address: 10.0.1.29, subnet: 255.0.0.0, destination: 10.0.1.213).
    Tue Oct 19 07:33:34 2010 : L2TP received CDN
    Tue Oct 19 07:33:34 2010 : Connection terminated.
    Tue Oct 19 07:33:34 2010 : Connect time 0.5 minutes.
    Tue Oct 19 07:33:34 2010 : Sent 777000 bytes, received 105388 bytes.
    Tue Oct 19 07:33:34 2010 : L2TP disconnecting...
    Tue Oct 19 07:33:34 2010 : L2TP disconnected
    2010-10-19 07:33:34 PDT --> Client with address = 10.0.1.213 has hungup
    Tue Oct 19 07:33:50 2010 : rcvd [LCP TermReq id=0x3 "User request"]
    Tue Oct 19 07:33:50 2010 : LCP terminated by peer (User request)
    Tue Oct 19 07:33:50 2010 : ipcp: down
    Tue Oct 19 07:33:50 2010 : sent [LCP TermAck id=0x3]
    Tue Oct 19 07:33:50 2010 : l2tpwaitinput: Address deleted. previous interface setting (name: en0, address: 10.0.1.29), deleted interface setting (name: ppp0, family: PPP, address: 10.0.1.29, subnet: 255.0.0.0, destination: 10.0.1.214).
    Tue Oct 19 07:33:50 2010 : L2TP received CDN
    Tue Oct 19 07:33:50 2010 : Connection terminated.
    Tue Oct 19 07:33:50 2010 : Connect time 3.5 minutes.
    Tue Oct 19 07:33:50 2010 : Sent 625383 bytes, received 225586 bytes.
    Tue Oct 19 07:33:50 2010 : L2TP disconnecting...
    Tue Oct 19 07:33:50 2010 : L2TP disconnected
    2010-10-19 07:33:50 PDT --> Client with address = 10.0.1.214 has hungup
    2010-10-19 07:33:59 PDT Incoming call... Address given to client = 10.0.1.216
    Tue Oct 19 07:33:59 2010 : Directory Services Authentication plugin initialized
    Tue Oct 19 07:33:59 2010 : Directory Services Authorization plugin initialized
    Tue Oct 19 07:33:59 2010 : L2TP incoming call in progress from 'XYZ'...
    Tue Oct 19 07:33:59 2010 : L2TP received SCCRQ
    Tue Oct 19 07:33:59 2010 : L2TP sent SCCRP
    Tue Oct 19 07:33:59 2010 : L2TP received SCCCN
    Tue Oct 19 07:33:59 2010 : L2TP received ICRQ
    Tue Oct 19 07:33:59 2010 : L2TP sent ICRP
    Tue Oct 19 07:33:59 2010 : L2TP received ICCN
    Tue Oct 19 07:33:59 2010 : L2TP connection established.
    Tue Oct 19 07:33:59 2010 : using link 0
    Tue Oct 19 07:33:59 2010 : Using interface ppp0
    Tue Oct 19 07:33:59 2010 : Connect: ppp0 <--> socket[34:18]
    Tue Oct 19 07:33:59 2010 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic XYZ> <pcomp> <accomp>]
    Tue Oct 19 07:33:59 2010 : rcvd [LCP ConfReq id=0x1 <asyncmap 0x0> <magic XYZ> <pcomp> <accomp>]
    Tue Oct 19 07:33:59 2010 : lcp_reqci: returning CONFACK.
    Tue Oct 19 07:33:59 2010 : sent [LCP ConfAck id=0x1 <asyncmap 0x0> <magic XYZ> <pcomp> <accomp>]
    Tue Oct 19 07:33:59 2010 : rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic XYZ> <pcomp> <accomp>]
    Tue Oct 19 07:33:59 2010 : sent [LCP EchoReq id=0x0 magic=XYZ]
    Tue Oct 19 07:33:59 2010 : sent [CHAP Challenge id=0xf1 <XYZ>, name = "myserver.private"]
    Tue Oct 19 07:33:59 2010 : rcvd [LCP EchoReq id=0x0 magic=XYZ]
    Tue Oct 19 07:33:59 2010 : sent [LCP EchoRep id=0x0 magic=XYZ]
    Tue Oct 19 07:33:59 2010 : rcvd [LCP EchoRep id=0x0 magic=XYZ]
    Tue Oct 19 07:33:59 2010 : rcvd [CHAP Response id=0xf1 <XYZ>, name = "user1"]
    Tue Oct 19 07:34:00 2010 : sent [CHAP Success id=0xf1 "S=XYZ M=Access granted"]
    Tue Oct 19 07:34:00 2010 : CHAP peer authentication succeeded for user1
    Tue Oct 19 07:34:00 2010 : DSAccessControl plugin: User 'user1' authorized for access
    Tue Oct 19 07:34:00 2010 : sent [IPCP ConfReq id=0x1 <addr 10.0.1.29>]
    Tue Oct 19 07:34:00 2010 : sent [ACSCP ConfReq id=0x1]
    Tue Oct 19 07:34:00 2010 : rcvd [IPCP ConfReq id=0x1 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns3 0.0.0.0>]
    Tue Oct 19 07:34:00 2010 : ipcp: returning Configure-NAK
    Tue Oct 19 07:34:00 2010 : sent [IPCP ConfNak id=0x1 <addr 10.0.1.216> <ms-dns1 10.0.1.29> <ms-dns3 10.0.1.29>]
    Tue Oct 19 07:34:00 2010 : rcvd [IPV6CP ConfReq id=0x1 <addr XYZ>]
    Tue Oct 19 07:34:00 2010 : Unsupported protocol 0x8057 received
    Tue Oct 19 07:34:00 2010 : sent [LCP ProtRej id=0x2 80 57 01 01 00 0e 01 0a 02 1b 63 ff fe 99 35 cb]
    Tue Oct 19 07:34:00 2010 : rcvd [LCP ProtRej id=0x2 82 35 01 01 00 04]
    Tue Oct 19 07:34:00 2010 : rcvd [IPCP ConfAck id=0x1 <addr 10.0.1.29>]
    Tue Oct 19 07:34:00 2010 : rcvd [IPCP ConfReq id=0x2 <addr 10.0.1.216> <ms-dns1 10.0.1.29> <ms-dns3 10.0.1.29>]
    Tue Oct 19 07:34:00 2010 : ipcp: returning Configure-ACK
    Tue Oct 19 07:34:00 2010 : sent [IPCP ConfAck id=0x2 <addr 10.0.1.216> <ms-dns1 10.0.1.29> <ms-dns3 10.0.1.29>]
    Tue Oct 19 07:34:00 2010 : ipcp: up
    Tue Oct 19 07:34:00 2010 : found interface en0 for proxy arp
    Tue Oct 19 07:34:00 2010 : local IP address 10.0.1.29
    Tue Oct 19 07:34:00 2010 : remote IP address 10.0.1.216
    Tue Oct 19 07:34:00 2010 : l2tpwaitinput: Address added. previous interface setting (name: en0, address: 10.0.1.29), current interface setting (name: ppp0, family: PPP, address: 10.0.1.29, subnet: 255.0.0.0, destination: 10.0.1.216).
    Tue Oct 19 07:34:00 2010 : rcvd [IP data <src addr 10.0.1.216> <dst addr 255.255.255.255> <BOOTP Request> <type INFORM> <client id 0x08000000010000> <parameters = 0x6 0x2c 0x2b 0x1 0xf9 0xf>]
    Tue Oct 19 07:34:00 2010 : sent [IP data <src addr 10.0.1.29> <dst addr 10.0.1.216> <BOOTP Reply> <type ACK> <server id 0x0a00011d> <domain name "XYZ">]

  • Unable to move more than one song at a time

    For some reason, iTunes has stopped allowing me to move more than one song at a time to playlists or my manually-managed iPod. I can grab as many songs as I want, but when I drag them over to the sidebar, i don't get the little green plus sign that means you can add the songs.
    If I only select one song, it woks fine.

    Did you by any chance uncheck the the boxes beside any or all of the songs in the library? Unchecked songs won't play in a playlist or the library unless you select them individually: iTunes: Understanding the Symbols Next to Songs
    Holding down the Control key and clicking the checkbox next to a song in the library or a playlist will toggle the marks for all the songs on or off: : iTunes 7 Keyboard Shortcuts for Windows

  • How to transfer file from one client to another client?

    hello,
    i have some questions and hope you all can help me..thanks a lot first..
    Here are the questions:
    i) How can i send a file from one client to another client using RMI?
    ii) Does the client(sender) need to send the file to server, then server save it and then send it to another client(receiver)?
    iii) If using RMI, a client can receive two files from same client(sender) or different client(sender) at a same time? how to do it? when both of the files come in from same port, how to differenciate them?
    iv) For your information, i am doing the File Transfer Server-client application which sender can send any file to other client. Can you give me any ideas? thanks..
    Last, thanks again..

    Your questions reflect some ambiguity in terms.
    "Client" and "server" are commonly used in two different senses:
    1. Technical sense: A client process makes requests, and a server process fulfills the request (provides a service).
    2. IT sense: A client computer (process) makes requests of a server (computer) process, and the server (computer) processes the request.
    In the first case, any computer might be a client, or a server, or both, depending on the processes being executed. In the second case, the computers are assigned some role.
    So: If you wanted to, you could implement client/server processes communicating between two peer computers, using RMI.
    This may not be what you wanted; if you really want to distinguish client and server computers, then the answer is that yes, you will probably put files into intermediate storage on the server computer.
    Finally, you probably do not have to worry about port conflicts if you use RMI; while the initial client server contact is established through a registry operating on a standard port, the actual RMI communications is established using random ports, one for each link.

  • After updating to Yosemite   Server, one client now has Access Denied error on file sharing.

    Just updated the law office from a Mavericks site to a Yosemite site. Everything is working fine except that one client now cannot connect to the file shares - Permission Denied, Contact your system administer error. I've looked through the permissions and even completed a Repair Permissions. What else can I do to get this client on-line with file sharing?

    Is the client connecting with the same credentials as the others? I tend to doubt it.

  • Only one user at a time allowed to open MS Access database on a Mac share

    I have an issue trying to open a Microsoft Access database from our Mac OS X Server running on XServe.
    The MS Access file is stored on a Share Point on the XServe. Windows XP clients open the database. The problem is that it will only allow one user at a time to open the file. The has previously been operating fine when it was stored on a Windows server.
    The Group's permissions for this Share Point allow Read & Write.
    Any thoughts would be much appreciated.

    I think you're being misled a bit by the interface: the checkbox labelled "Strict locking" doesn't just allow strict locking, it requires it (and thus disallows byte-range locking). That is, with strict locking enabled, any client that tries to lock any part of the file actually locks the entire file. Access normally depends on byte-range locking to allow different clients to share the database (as long as they aren't trying to modify the same part of it at the same time), but with strict locking the first client locks all others out.

  • I'd like to know how can i connect my old iMac tiger with new one iMac lion. I wanna use the old one for external disk to collect files from there to new one.

    I'd like to know how can i connect my old iMac tiger with new one iMac lion. I wanna use the old one for external disk to collect files from there to new one.

    Hi mshields1162,
    Great question, and welcome to Apple Support Communities.
    First, you may want to choose to have the sidebar displayed for familiarity:
    iTunes 11: Frequently used features
    http://support.apple.com/kb/HT5649
    Afterwards, your device should be displayed if connected:
    We'll want to click on it, and choose the Music tab at the top. Let's make sure "Sync Music" is checked:
    Afterwards, you'll have the option to sync either the entire music library (for your first iPod), or "Selected playlists, artists, albums, and genres" (for the secondary device). Upon selecting this option, four larger option boxes will appear allowing you to pick and choose what content will be synced. For audiobooks, you may need to do the above in the "Books" section. For a visual instruction on how to do this, see the following:
    iTunes 10: Sync to your iPod
    http://support.apple.com/kb/VI72
    Thanks,
    Matt M.

Maybe you are looking for

  • How do I transfer an iphoto library from a guest login to either another login or a thumb drive?

    I am letting a friend use my computer as a surrogate for the time being to backup her phone and photos. I had never used the guest login before and didn't realize that all the files would be lost at logout. I haven't logged out yet but I need help tr

  • Error when opening any campaign - CRM 7.0 WebUI

    Dears, when we try to open an marketing campaign we get the below error. Please help us. The URL http://host:port/sap/bc/bsp/sap/crm_ui_frame/BSPWDApplication.do was not called due to an error. Note The following error text was processed in the syste

  • Widget text not properly displaying

    I have been trying to get a basic widget to work using widgetfactory API on Captivate 5.  Most of the functionality is there however the two text boxes in the properties pannel should be populating two text fields at run time & preview.  Instead, the

  • String type field in datasouce from db connect system

    i have create a datasouce from db connect witch connect to a oracle database. and there is a field with type string. when i active transfer rule between infosouce and datasouce it return a error: more than 3 sting type in rule so i hide some field wi

  • Installation of Mountain Lion will not initiate on MB Pro 15", late 2008.

    I am trying to install ML on my MacBook Pro, currently running Lion with all the latest updates.  Configured with 4 GB Ram.  I get a message that says: Could not find Installation information for this machine.  Contact AppleCare. I inherited this com