Network hardisk

I'm using 2 macs in a local network. I use a mac pro as a server (every file is stored on it) and a macbook pro. When I work with photoshop and I want to save the file everything works fine, but after that is not possible to eject the network hard drive and I can't even turn off my computer. Every time I have to force the ejection of the hard drive if I want to turn off the computer. I've asked to apple help desk but they said that Is not a problem of OS X but a photoshop problem. I've tried to use different application the save files on the network HD and every time everything works fine.
I use a: - Mac Pro with OS X Yosemite 10.10.1
             - MacBook Pro with OS X Yosemite 10.10.1
Installed: Photoshop CC 2014.2.1
Thank you for your help
Have a great day
Francesco

Hi
Adobe Photoshop doesn't support the network hard disk
please go through the following document for details
Networks, removable media | Photoshop | CS4 and later

Similar Messages

  • Can I use a networked external harddisk for TM?

    The external hardisk that I want to use is either an internal harddisk and/or an external hardisk connected with an Apple Server on my local network. So it's not connected directly to my MacBook. However, TM cannot "see" these harddisk. Is TM only capable of working with harddisks directly connected to the computer you're backing up? If this isn't the case, I would be grateful for some guidance on how to configure TM? Thanks.

    Hi Pondini. I am a bit confused by your reply to this string of posts.
    I understand your reply to sky65 that there is an issue with non-apple disk for TM. That's not what I'm attempting to do (as noted in my posts above that sky65 replied to).
    My request is to connect to a TM volume that is directly connected to another Mac in the same room as the first Mac (that has another TM volume mounted directly to it).
    The FAQ at the top of this forum mentions changing permissions on a file that begins with a "." in the name, but given issues with Apple, etc. that you allude to in your post I'm wondering if this is just a short-term fix OR is it long-term solution.
    Here is my original post which was to pvonk's solution posted in these discussion forums.
    Dear pvonk,
    What you describe in your post is what I'd like to accomplish, however, I'm not understanding how you "mount" the appropriate drive in your scenario.
    For example, I can set up a TM drive directly connected to my Intel iMac1. I make sure that this drive is Shared via Sys Prefs, as you outline below. Then, I go to my Intel iMac2 and Connect to the Intel iMac1 (with my Intel iMac1 admin account). I get the Finder window and can "see" the TM drive listed in this window. But I don't see how I "mount" the TM drive from Intel iMac1 on the (desktop) of Intel iMac2 -- the drive does not show up in Disk Utility on Intel iMac2, so I'm not understanding how I mount it to use with iMac2 Time Machine app.
    I do notice that I can see the TM drive within Time Machine app on Intel iMac2, but when I choose the TM drive, I get a dialog asking me to login (which I do, again, with the admin account and password for Intel iMac1), but then I get an error message about not having permissions to write a file (that begins with a .)
    I noticed that the FAQ says there is a way to change this with Terminal, but you do not talk about having to do any of that work to get your setup to work.
    Can you please elaborate?
    Thanks,
    C Vician

  • Need help on USB hub for mac air 13 inch (2 external hardisk and Iphone)

    Hello everyone, I am a new macbook air user, and currently using 2 external hardisk of 1TB and 2TB. I am looking for usb hub that support both of my external hardisk, ethernet and iphone too. The problem is, limited usb hub for mac air and bad review on balkin product, any advice for me?
    One more thing, I just moved from window to mac for the first time, and bought Western Digital 2TB external hardisk, the problem is, I can't save any video/audio file that I downloaded from internet in macbook to be transfer/move to this WD 2TB external hardisk, except for back up and time machine. It refuse to except any file that I try to move in to the external hardisk Can anyone help me? compactibility problem?

    First, I have not found any of my hubs to have an issue with my MBA. Just make sure that if any peripherals you attached to the hub are adequately powered. Either by having the hub independently powered, or the devices having their own power supply.
    The drive problem you have may be due to the file formatting. If this drive is formatted NTFS, then in many cases you can write to it using a network protocol, but OS X can't write to it if attached directly to the computer, e.g. USB, SATA, FireWire. You will neeed to either format the drive as a HFS+ drive, or use software that enables OS X to write directly to t a NTFS formatted drive, such as NTFS-3G. DISCLAIMER: As the information you provide for your circumstances is limited, this is but one suggestion amongst many, that explain your situation.

  • NIO Network File Transfer Seriously Underperforming

    I've written a networked collaboration tool that implements client/server file transfer, and exhausted every NIO I/O option I can think of, yet my file transfers continue to run quite slowly on a 100-BT LAN.
    All SocketChannels are set to NON-BLOCKING mode. I started with FIleChannels and ByteBuffers using the following server code:
    // file transfer is running in its own thread
    File = new File(filePath);
    RandomAccessFile inputFile = new RandomAccessFile(file, "r");
    FileChannel fileChannel = inputFile.getChannel();
    ByteBuffer bb = ByteBuffer.allocateDirect(8192);
    int bytesRead = 0;
    while( fileChannel.read(bb) != -1 ){
         bb.flip();
         channel.write(bb);   // channel is the client SocketChannel
         bb.compact();
         Thread.sleep(20);
    }The client side code is basically the same. This implementation transfers to the client at about 500k/second. Next I tried using a MappedByteBuffer to map the file into memory on the server:
    File = new File(filePath);
    RandomAccessFile inputFile = new RandomAccessFile(file, "r");
    FileChannel fileChannel = inputFile.getChannel();
    MappedByteBuffer mbb = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0, fileChannel.size());
    while( mbb.remaining() > 0 ){
         channel.write(mbb);   // channel is the client SocketChannel
         Thread.sleep(20);
    }The MappedByteBuffer actually works quickly, but only for small files. I can transfer an MP3 file in less than one second. This is the kind of performance I'm looking for. I can get 100-BT speeds on 10 or 20MB files. However, if I attempt to transfer a large file (500MB) using this method, I get the following exception calling channel.write(mbb):
    java.io.IOException: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full
    I'm assuming this is because the call is attempting to write far too many bytes to the client SocketChannel, but I thought SocketChannel.write() would only write as many bytes as possible to a non-blocking SocketChannel, so I'm a bit confused as to why it would overflow the SocketChannel's buffer.
    I tried one more implementation, using FileChannel.transferFrom and TransferTo. Here's the code on the server side:
    File = new File(filePath);
    RandomAccessFile inputFile = new RandomAccessFile(file, "r");
    FileChannel fileChannel = inputFile.getChannel();
    long written = 0;
    long fileSize = fileChannel.size();
    while( (written += fileChannel.transferTo(written, 8192, channel)) < fileSize ){
         Thread.sleep(20);
    }This performs slightly faster than the first implementation using FileChannel and ByteBuffer, but only by 1MB/second or so on LAN. I changed the code to
    fileChannel.transferTo(written, fileSize, channel)But I get the same exception during runtime:
    java.io.IOException: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full
    So... I'm lost as to how to get acceptable LAN performance on a network file transfer. If the MappedByteBuffer implementation didn't throw an exception, then I'd be set. But I have no idea what is causing the exception and cannot locate any information on it.
    Any input or suggestions would be greatly appreciated. Thanks much!

    A point of interest? When you tried the
    fileChannel.transferTo(written, fileSize, channel)
    and got the IOException (buffer too small etc) where you using non-blocking IO? If so try it with the Socket
    Channel set to Blocking mode (might help to narrow down the problem)
    Also have you checked the CPU usage of your program when its transfering data?
    as pkwooster said it could also be an issue with diskIO. There are many free apps on the net that will
    measure the throughput your hardisk can sustain.
    matfud

  • Trasferimento dati da pc a hardisk

    Come faccio a trasferire i dati dal mac su un hardisk da 1 tera?

    To backup your library, Mac or PC, you need to copy the entire iTunes folder and all its subfolders to a new location on a network or external drive. For any easy way to do this with Windows see this User Tip. For a Mac Carbon Copy Cloner will do the same job.
    Note this won't preserve the device backup files, but if you restore a library backed up in this way to a new computer iTunes will happily backup and sync with it as if nothing had changed.
    Translated by Google. Hope it makes sense.
    Per eseguire il backup della libreria, Mac o PC, è necessario copiare l'intera cartella di iTunes e tutte le relative sottocartelle in una nuova posizione su una rete o un disco esterno. Per un modo semplice per fare questo con Windows vedere questo User Tip.Per un Carbon Copy Cloner Mac farà lo stesso lavoro.
    Nota che questa non mantiene i file di periferica di backup, ma se si ripristina una libreria di backup in questo modo ad un iTunes nuovi computer sarà lieto di backup esincronizzazione con esso, come se nulla fosse cambiato.
    Tradotto da Google. Spero che abbia un senso.
    tt2

  • Small office network

    Hi there,
    I want to install/move our office over the weekend and have some lose ends, which i hope can be answered in this forum.
    First, let me start off mentioning what i intend to do:
    we have three (airport enabled) iMacs sitting in the middle of our office.
    At the far end of the office we have the DSL modem, a Gigabit Ethernet Switch, the airport extreme station.
    At the other end of the office, I have a HP Color LaserJet (networkable) and a PowerMac G5 1.8GhZ DP (has an airport card installed).
    I would like to have the three iMacs connected to the Internet, the Printer and the G5 PowerMac (which will serve as a server). I go about that by connecting the Modem with a jumper cable to the Gigabit switch, as well as the Ethernet cable (regular ONE-WAY) from the printer and the G5 into the Gigabit Switch, I assume. Then I lead one Ethernet Cable from the Gigabit Switch into the airport station, so that an (optional) laptop could access all of teh attached goodies.
    Eeventhough the iMacs are airport enabled, I would rather have the option of having them hardwired as well (for speed reasons). I just plug those ethernet cables inside the Gigabit Switch as well?
    Thats the technical part.
    Now a question about the PowerMac G5. Everyone on the network needs to access files which I will store on the G5, such as photo library and some word and xls documents. Can i just make everything shareable?
    Thank you in advance for any suggestions/input you might have.
    G5 imac, powermac, etc   Mac OS X (10.4.6)  

    It sounds like you have it right - if you're using wired ethernet connections just connect everything back to the switch.
    For the base station, make sure it's running in bridge rather than route mode - using AirPort Admin Utility, turn off the 'distribute IP addresses' option.
    As for the file sharing, I wouldn't share the entire drive, but designate one folder (or folders) as being shared. If this is running Mac OS X client (vs. Server) get a copy of SharePoints which will make it easy to select which folders are available for sharing.
    Unless you're also running as a directory server you'll also need to make sure that the G5 has an account for everyone that is going to log onto it to access the shared folders. You could use one common account, but that's not recommended.

  • Cannot send email from outlook 2011 (Mac) on public networks but can send via  Mac Mail

    I cannot send mail with Outlook from anywhere other than my work or home network, will not work even when accessing 4g with my phone hotspot; very frustrating. I am using Yosemite & Macbook Pro (2012). if i use the Apple Mail everything works fine so I can only assume it is a setting on Outlook?

    Update - I now have it working.
    am not really sure what exactly fixed it.
    I changed a lot of things but my setup now has the following which I think fixed.
    outgoing server  - p06-smtp.mail.me.com
    override default port checked - port now 587
    on more options button changed it to "use incoming server info".

  • Network Cable unplugged

    I have BT Total Broadband Anywhere Home Hub 2. I have used it successfully on my desktop pc and wirelessly with my laptop. However I went away for 2 months and was unable to use either (everything was switched off whilst away).  On my return the laptop can't connect at all, I just get two grey monitors with a red X and the information 'A Network Cable is unplugged'. I bought  a netbook when away and am having the same problem with that now.
    On the laptop that worked before, on my Network Connections it is showing as follows:
    Local Area Connection 2
    Network cable unplugged
    Broadcom 440 x 10/100 Integrated Controller
    1394 Connection 2
    Connected
    1394 Net Adapter #2
    I have tried connecting to the Hub with an ethernet cable without success and when I run the Hub Manager on the laptop it just says it can't connect with the hub. When I run the Hub Manager on my desktop it says there is no wireless device detected.
    A check on the laptops device manager hardware shows everything as working properly, but when I try the Wireless WLAN configuration utility in Control Panel it tells me there are currently no wireless adapters available and enabled.
    I am getting desperate as I cannot sit at the desktop for any length of time and need the laptop, please can anyone help?

    chunkleberry wrote:
    I have BT Total Broadband Anywhere Home Hub 2. I have used it successfully on my desktop pc and wirelessly with my laptop. However I went away for 2 months and was unable to use either (everything was switched off whilst away).  On my return the laptop can't connect at all, I just get two grey monitors with a red X and the information 'A Network Cable is unplugged'. I bought  a netbook when away and am having the same problem with that now.
    On the laptop that worked before, on my Network Connections it is showing as follows:
    Local Area Connection 2
    Network cable unplugged
    Broadcom 440 x 10/100 Integrated Controller
    1394 Connection 2
    Connected
    1394 Net Adapter #2
    I have tried connecting to the Hub with an ethernet cable without success and when I run the Hub Manager on the laptop it just says it can't connect with the hub. When I run the Hub Manager on my desktop it says there is no wireless device detected.
    A check on the laptops device manager hardware shows everything as working properly, but when I try the Wireless WLAN configuration utility in Control Panel it tells me there are currently no wireless adapters available and enabled.
    I am getting desperate as I cannot sit at the desktop for any length of time and need the laptop, please can anyone help?
    Hi, the devices you have mentioned are the 'wired' connections.  On most laptops, there are switched you can press to turn on and off wireless, is it posisble this has been done?
    You can check to see if 'wireless network' appears by selecting the Start Button, then click on Control Panel and open, you should see 'Network' (doing this by memory) and open that up, you will see Wired Lan and Wireless Lan.
    If Wireless Lan is disabled, you can right click on wireless lan and enable it, that should work.
    CG
    CG Over An Out

  • AIO Remote wont recognize my network printer deskjet 3050

    AIO remote app (IOS) did not recognize my network printer (Deskjet 3050), other apps (printer pro lite) did recognize the printer flawlessly, both the printer and the iphone are in the same network, I can print from my PC and my mac but not from AIO remote app (not even recognize the printer).
    Can you help me?

    Hello MrCrysis,
    With the Printer Pro Lite app working to printer, this is excellent to hear. Although this is not an HP app. So to explain as to why the AiO Remote app is not recognizing your printer, and not being able to scan. Your printer does not have AirPrint capabilities according to the 'HP Deskjet 3050 (J610) and 3050A (J611) All-in-One Printer Series Product Specifications'. AirPrint is a requirement for the HP AiO Remote app to work, and because the printer does not have AirPrint the app can not see the printer.
    Regards .
    I worked on behalf of HP

  • AIO Remote app cant find HP 3050 printer on my network

    Well thats my problem, I tried Fing and it sees the printer, tried ePrint free and it prints like a charm, but AIO does not even see my printer on my network (and yes my printer is in the same network as my mobile device is) I can print from my PC (windows 7) and my MAC (leopard) but I cant print from my iphone 4 using your app. I did the direct connect and it works but I need the network connect instead.
    Am I missing something here?
    THX for supporting me.

    Hi MrCrysis,
    Your question has been answered on http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mob​ile-Printing-and-ePrintCenter/AIO-Remote-wont-reco​...
    Regards
    I worked on behalf of HP

  • AIO Remote app cant find HP 7150 aio printer on my wifi network, on Windows Phone 8

     HI,
    Yesterday I install You App AIO Remote on Windows Phone 8. I have connected to wifi HP 7150 aio printer, but phone cant find this printer... I have Lumia 1520 and Lumia 920 smartphones both is connect to this same wifi network like printer, but You app on both Lumias cant find printer, again but no problem is to connect to printer WEB interface from this both Lumias, so wifi network is correct configured.
    I have two tablet more in this same wifi network, both with windows 8.1 x64 systems, on this, You Windows 8 modern App AIO Remote find this same printer without problem...
    So what is wrong ? printer config ? eprint is on, ipp is on, bonjur is on, ip is static.
    Please help Me becease I wait for this app and now i cant use them
     Thanx
    Peter

    Hi Peter,
    Welcome to the HP Support Forums.  I understand that you are trying to use the new HP AiO Remote app for Windows phones to print to your Photosmart 7150 printer.
    The Photosmart 7150 printer only supports USB connectivity, I have include the Photosmart 7150 Printer Specifications for reference.  To be able to use the HP AiO Remote app the printer needs to be connected to a wireless network. 
    If you accidentally typed the incorrect printer model, please let me know which make/model/product number of HP printer that you have. How Do I Find My Model Number or Product Number?
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Google Play on Tablet works on WIFI not Verizon network.

    I have an Motorola Ellipsis Tablet. I am unable to use Google Player. When I open the app, I get "Background data disable. Google play store needs background data to be enabled." I hit enable and It asks me to choose either Facebook or Gmail. I choose my email account and it tries to sync and I get the message "Sync is currently experiencing problems. It will be back shortly." Everything works fine when I am on WIFI at home but when I get to work and I'm on the Verizon network it won't work. I can't use Pandora or look at video. Can someone help me figure out why it is not working on the Verizon network? Thanks.

        Hi Mollie88,
    Oh my! Let's get you back to enjoying your device. Some applications depend upon background data (transferring data when not directly in use). Restricting background data may cause those apps to stop functioning unless a Wi-Fi connection is available. To uncheck Restrict background data in the Google Play application,  follow the directions in the link  http://vz.to/1f5KM7b .
    Thanks,
    PamelaF_VZW
    Tweet us @vzwsupport

  • X201 Tablet: Drivers not working for Network controller on Windows 7 Pro x64

    Hello,
    After downloading and installing all LAN and WLAN drivers for X201 Tablet, I couldn't find one that works on Windows 7 x64.
    How can I proceed?
    Thank you in advance
    Solved!
    Go to Solution.

    I fixed it by downloading this drivers:
    https://downloadcenter.intel.com/download/18713/Network-Adapter-Driver-for-Windows-7-
    And after installing them and restarting, searching for them manually from the Device Manager.
    Cheers

  • IPad iOS 8.1 Mail constant network use draining battery

    Since updating to iOS 8.1, iPad Mail is rapidly draining my battery. When I go into Mail the network usage indicator (spinning wheel) runs constantly. I left it this way by mistake while traveling and it drained the whole battery with minimal actual usage in one day -- I usually only have to recharge every 2-3 days.
    I have checked the battery usage indicator in Settings and it shows that in the last 24 hours Mail used 54% of the battery. I had changed no settings, but went into Mail & Calendar settings and double-checked them, and they were as they had always been. I have three email accounts: Gmail, Verizon, and a company account on an Exchange server. It's the only one that was set to Push, but now I've set it to Fetch like the others and it still continuously accesses the network when I'm in Mail.
    This must be a bug of some kind introduced by a recent OS or app update, right? This never happened before, and nothing else has changed in my usage of the iPad or Mail.
    One other issue: Mail is not actually fetching new mail when it should. I see new mail show up on Mac Mail hours before it appears on the iPad. Normally email would arrive almost simultaneously on my iPhone and iPad, then a moment later on the Mac. Now the phone is still first, but the iPad lags. The only way I can get the iPad to refresh in real time is to close the app and restart it.
    Is anyone else seeing this behavior with the recent update? Any idea how to fix it?

    Found a solution at: http://webcamsocialshopper.com/iphone-battery-suddenly-draining-try-this-non-res tore-method
    Short version, remove your Exchange account, shut down phone, restart, add the Exchange account back. Problem solved.

  • ASA 5505 VPN clients can't ping router or other clients on network

    I have a ASA5505 and it has a vpn set up. The VPN user connects using the Cisco VPN client. They can connect fine (the get an ip address from the ASA), but they can't ping the asa or any clients on the network. Here is the running config:
    Result of the command: "show running-config"
    : Saved
    ASA Version 7.2(4)
    hostname ASA
    domain-name default.domain.invalid
    enable password kdnFT44SJ1UFX5Us encrypted
    passwd 2KFQnbNIdI.2KYOU encrypted
    names
    name 10.0.0.4 Server
    interface Vlan1
    nameif inside
    security-level 100
    ip address 10.0.0.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address dhcp setroute
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    ftp mode passive
    clock timezone MST -7
    clock summer-time MDT recurring
    dns domain-lookup inside
    dns domain-lookup outside
    dns server-group DefaultDNS
    domain-name default.domain.invalid
    access-list vpn_splitTunnelAcl standard permit any
    access-list inside_nat0_outbound extended permit ip any 10.0.0.192 255.255.255.192
    pager lines 24
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    ip local pool VPNpool 10.0.0.220-10.0.0.240 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    asdm image disk0:/asdm-524.bin
    no asdm history enable
    arp timeout 14400
    global (outside) 1 interface
    nat (inside) 0 access-list inside_nat0_outbound
    nat (inside) 1 0.0.0.0 0.0.0.0
    static (inside,outside) tcp interface smtp Server smtp netmask 255.255.255.255
    static (inside,outside) tcp interface pop3 Server pop3 netmask 255.255.255.255
    static (inside,outside) tcp interface www Server www netmask 255.255.255.255
    static (inside,outside) tcp interface https Server https netmask 255.255.255.255
    timeout xlate 3:00:00
    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
    http server enable 480
    http 10.0.0.0 255.255.255.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto dynamic-map outside_dyn_map 20 set pfs group1
    crypto dynamic-map outside_dyn_map 20 set transform-set ESP-3DES-SHA
    crypto map outside_map 65535 ipsec-isakmp dynamic outside_dyn_map
    crypto map outside_map interface outside
    crypto isakmp enable outside
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    dhcpd auto_config outside
    group-policy vpn internal
    group-policy vpn attributes
    vpn-tunnel-protocol IPSec
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value vpn_splitTunnelAcl
    username admin password wwYXKJulWcFrrhXN encrypted privilege 15
    username VPNuser password fRPIQoKPyxym36g7 encrypted privilege 15
    username VPNuser attributes
    vpn-group-policy vpn
    tunnel-group vpn type ipsec-ra
    tunnel-group vpn general-attributes
    address-pool VPNpool
    default-group-policy vpn
    tunnel-group vpn ipsec-attributes
    pre-shared-key *
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
    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 rsh
    inspect rtsp
    inspect esmtp
    inspect sqlnet
    inspect skinny
    inspect sunrpc
    inspect xdmcp
    inspect sip
    inspect netbios
    inspect tftp
    service-policy global_policy global
    prompt hostname context
    Cryptochecksum:df7d1e4f34ee0e155cebe86465f367f5
    : end
    Any ideas what I need to add to get the vpn client to be able to ping the router and clients?
    Thanks.

    I tried that and it didn't work. As for upgrading the ASA version, I'd like to but this is an old router and I don't have a support contract with Cisco anymore, so I can't access the latest firmware.
    here is the runnign config again:
    Result of the command: "show startup-config"
    : Saved
    : Written by enable_15 at 01:48:37.789 MDT Wed Jun 20 2012
    ASA Version 7.2(4)
    hostname ASA
    domain-name default.domain.invalid
    enable password kdnFT44SJ1UFX5Us encrypted
    passwd 2KFQnbNIdI.2KYOU encrypted
    names
    name 10.0.0.4 Server
    interface Vlan1
    nameif inside
    security-level 100
    ip address 10.0.0.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address dhcp setroute
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    ftp mode passive
    clock timezone MST -7
    clock summer-time MDT recurring
    dns domain-lookup inside
    dns domain-lookup outside
    dns server-group DefaultDNS
    domain-name default.domain.invalid
    access-list vpn_splitTunnelAcl standard permit any
    access-list inside_nat0_outbound extended permit ip any 10.0.0.192 255.255.255.192
    pager lines 24
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    ip local pool VPNpool 10.0.0.220-10.0.0.240 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    asdm image disk0:/asdm-524.bin
    asdm location Server 255.255.255.255 inside
    no asdm history enable
    arp timeout 14400
    global (outside) 1 interface
    nat (inside) 0 access-list inside_nat0_outbound
    nat (inside) 1 0.0.0.0 0.0.0.0
    static (inside,outside) tcp interface smtp Server smtp netmask 255.255.255.255
    static (inside,outside) tcp interface pop3 Server pop3 netmask 255.255.255.255
    static (inside,outside) tcp interface www Server www netmask 255.255.255.255
    static (inside,outside) tcp interface https Server https netmask 255.255.255.255
    timeout xlate 3:00:00
    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
    http server enable 480
    http 10.0.0.0 255.255.255.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto dynamic-map outside_dyn_map 20 set pfs group1
    crypto dynamic-map outside_dyn_map 20 set transform-set ESP-3DES-SHA
    crypto map outside_map 65535 ipsec-isakmp dynamic outside_dyn_map
    crypto map outside_map interface outside
    crypto isakmp enable outside
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    dhcpd auto_config outside
    group-policy vpn internal
    group-policy vpn attributes
    vpn-tunnel-protocol IPSec
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value vpn_splitTunnelAcl
    username admin password wwYXKJulWcFrrhXN encrypted privilege 15
    username VPNuser password fRPIQoKPyxym36g7 encrypted privilege 15
    username VPNuser attributes
    vpn-group-policy vpn
    tunnel-group vpn type ipsec-ra
    tunnel-group vpn general-attributes
    address-pool VPNpool
    default-group-policy vpn
    tunnel-group vpn ipsec-attributes
    pre-shared-key *
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      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 rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny
      inspect sunrpc
      inspect xdmcp
      inspect sip
      inspect netbios
      inspect tftp
      inspect icmp
    service-policy global_policy global
    prompt hostname context
    Cryptochecksum:78864f4099f215f4ebdd710051bdb493

Maybe you are looking for

  • Message: MZCommerce.BadPasswordToken_message HELP!

    Hi, If anyone can help, I am getting the message: MZCommerce.BadPasswordToken_message whenever I try to purchase anything from the US iTunes Store. I can't access my account summary or purchase anything because of this message. Please can someone tel

  • Master/detail issue

    I have a tricky if convoluted implementation issue and hope you can assist with resolution. I have a form with a master/detail relationship. The master block has a primary key called master_id and the detail block has three foreign keys (caller_id, r

  • My address book dosent work at all

    When I open address book it wont let me add a new contact. I can't add a new card or new group. I've tried going in and changing some of the settings but nothing I do seems to work. Please any help would be great! Thanks

  • FORMS - FRM-40735 ERROR

    Hi. I've created a new application which provides the customer's commercial analysis. There are 3 text-items in my form where user fill them with the following: Establishment, Customer_id and the Period(in days) for the consulting. After that the 'ke

  • SAP Fax

    Hi All,<br> <br> I'm having an issue where we are unable to fax statements through SAP, ECC 6.0.  In testing, we were able to fax successfully in our Dev and Qas environment. Here is the job log:<br><br> 09/03/2009 16:11:29 Job started<br> 09/03/2009