Modifying a Contribute site outside of Contribute

I have been asked to modify the left navigation bar in an existing site that was built with Contribute.  Can I modify the HTML directly or do I need to use Contribute to modify the site.
I am not sure if a local copy of the web site is kept on the PC and then published to the live site OR Contribute modifies the live site directly.
Jerry

I took a look through the Documentation and forums (even coming across your post to their support staff).  More than likely it sounds like you are correct in assuming that you should only need to edit that template.html page and the associated CSS file.  However, I think you are misinterpreting how Dreamweaver works.  With Dreamweaver you will bring the files back to your computer to work on and then they need to be put back on the server.  Now if you setup the remote server connection in Dreamweaver, the Live View function can pull active content from the web so you can see how it looks, but it will not be an interactive edit where as you are making changes they are automatically seen on the web.  This is because Live View is a much more accurate view of how your page will look on the internet compared to Design View because it uses the webkit engine that Safari and Chrome use. 
Although I will say you have some work cut out for you, because looking at their demo page they are using an HTML5 document type, which seems very strange to me, yet they are including tons of obsolete HTML elements that have been replaced by CSS since XHTML 1.0.  In my opinion it looks like to use most of their code you should first change the document type from HTML5 to the HTML 4 document type in the page properties window of Dreamweaver because otherwise, with all this mixture of code, sometimes browsers will be sent into a "quirks" mode where it guesses on how it should render a page leading to inconsistent layouts and unnecessary headaches.

Similar Messages

  • I cannot sit outside for more than 45 minutes without my ipad shutting down due to heat. is there a way to fix this?

    i cannot sit outside for more than 45 minutes without my ipad shutting down due to heat. is there a way to fix this?

    What model iPad? What is the outside temperature?
    When outside what are you doing on the iPad - running a graphic intensive app?
    iPad operating ambient temperature: 0° to 35° C (32° to 95° F)
     Cheers, Tom

  • Access the MOSS 2007 site outside the VM box

    hi all,
     I am having a VM  where MOSS 2007 is installed  and i had restored a .bak file  to a new site collection. so, its perormed successfully. Now the issue i am facing is,i am not able to access this site from outside
    the VM box.i am able to remote desktop to this VM from my desktop and its configured in my company's domain network. 
    mydomain\myusername is the farm admin/login id..
    so when try to acces the url from my desktop,  am getting "page can't be displayed".
     so would like  to know if there is any settings i need to make in order to access the site outside the VM box.

    Hi Richard,
    I thinks the file on the root directory of a SharePoint site is unable to be set with a unique permission, SharePoint securable object are web, list/library, list/library iteml, as what you're going to do, the workaround is
    to put the file in a libary and grant the unique permission.
    http://office.microsoft.com/en-001/windows-sharepoint-services-help/about-controlling-access-to-sites-and-site-content-HA010100144.aspx?CTT=5&origin=HA010100149
    http://office.microsoft.com/en-001/windows-sharepoint-services-help/manage-permissions-for-a-list-library-folder-document-or-list-item-HA010021564.aspx
    http://blogs.msdn.com/b/chandru/archive/2012/04/01/list-of-all-securable-objects-that-have-unique-permission.aspx
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Contribute Publishing Server and Contribute CS3?

    Is Contribute CS3 compatible with Contribute Publishing
    Server? If not, does anyone know if an update to CPS is coming
    soon? It's still at version 1.11. Yikes!

    I guess I didn't see anything from Macromedia that tells me
    that CPS works with the new version. I'm not looking for new
    features. I just want to make sure there aren't any
    incompatibilities, outstanding bugs.

  • Can't administer Contribute site in DW CS3

    From Help:
    Click the Administer Site in Contribute button.
    Note: This button does not appear if you have not enabled
    Contribute compatibility.
    If prompted, enter the administrator password, and then click
    OK.
    The Administer Website dialog box appears.
    I enabled Contribute Compatibility. I clicked the Test button
    and the test is successful. I click the Administer Site in
    Contribute button and DW connects to the server, but the Administer
    Website dialog box does not appear. I want to be able to send a
    connection key to myself. Although the site ftp is properly set up
    in DW, I forgot the ftp password and therefore can't set up the
    site in Contribute (the .ste file can't be imported into
    Contribute). Thanks in advance for any help.

    > I click the Administer Site in Contribute button and DW
    connects to
    > the server, but the Administer Website dialog box does
    not appear.
    Do you have Contribute installed on this machine?
    That dialog box is not within dreamweaver, it's a link to
    open the dialog
    box in Contribute.
    > Although the site ftp is properly set
    > up in DW, I forgot the ftp password and therefore can't
    set up the site in
    > Contribute
    There are two possibles:
    One: There is the site's FTP password.
    If you haven't written that down on paper somewhere, it can
    be recovered
    from the dw information.
    do a google search for recover dreamweaver password or post
    back if can't
    find it.
    Two: There is the site's Contribute Admin Password.
    If you've lost that, there is still a couple of ways to reset
    it.
    Post back if that is what you need.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Import contribute site in dreamweaver

    I want to import the site I currently manage in contribute in dreamweaver to see if it is an easier way to manager.  How do I do this?

    Have you ever used Dreamweaver?
    How good are you with HTML and CSS code?
    Go to Site > New Site and tell DW where on your hard drive you wish to keep your local site folder.
    Enter your remote server FTP credentials.
    From the Files Panel, Click on the Down Arrow to GET files from your remote web server.
    Nancy O.

  • Logging out of a Contribute site from D/W

    I created a template based site for a client for them to edit
    using Contribute. I just uploaded some new pages for them adn
    theyre getting a message saying that I'm still in the site. Do I
    have to check in *all * of the files in order for me to be logged
    out ?
    cheers
    Simon

    OK, I will go back and reread...
    My understanding was that SSL aka https was taking care of the credential  checking using, in our case, Active Directory user entries - and that PHP was  just grabbing the UID from that source - for instance, what I do when I want teh logged on UID is:
    //grab the logged on user, depending on whether they logged on with the  domain prepended
      if(substr_count($_SERVER['REMOTE_USER'],"\\") !=  0)
        //the logon has a domain prepended before the 'actual'  UID
        list($logged_on_domain, $logged_on_user) = split('\\\\',  $_SERVER['REMOTE_USER']); //grab the logged on user off the IIS server  variable/s, and split off the (presumed) "[domain]\" portion and essentially  discard <--NOTE USE OF FOUR(4)backslashes as needs to be *double  escaped*
       else
        //no domain (assume) prepended before  the back slash, so just the 'actual' UID
        $logged_on_user =  $_SERVER['REMOTE_USER'];
    I can set $_SERVER['REMOTE_USER'] = 'baddomain\baduser' of course - but  when I return to the secure page the user's browser cache (?) has reset  $_SERVER['REMOTE_USER'] to be their previously logged on user name - so they are  still logged in...
    So maybe my "logging off" question is not really JS/PHP-specific?  Hmmm....
    I will go back and reread various pages (paper and online) with your  suggestion/s as the context - so thank you...
    Regards,
    GREG...

  • Style sheet outside of contribute website

    We use Contribute campus wide here at Smith College, but have
    just started using more global css based style sheets. So while a
    department might be at www.smith.edu/department/english/index.html,
    the the style sheet is at www.smith.edu/css/global.css
    How do I setup contribute cs3 to show only the styles in that
    location to contribute publishers and writers?
    One idea is to pop some kind of generic css file in each
    department website location with an @import or something like that
    to get the global css and then point contribute to that file. Would
    that work?

    Thanks. So I just can't choose a style sheet outside of the
    contribute website no matter which role I try. some kind of css
    file has to be in the website area that contribute can see if I
    want to specify one. I could setup a copy of the global.css file
    which will work for contribute users, but over time it will not
    perfectly match global as it changes unless we ran some kind of
    search and replace script every time we updated the global.css
    file.

  • How do I save drafts outside of contribute?

    I keep having trouble with my connection and do not want to
    start over with my drafts. I cannot reconfigure connection with
    active drafts. Is there a way to save them.?
    shannon

    Drafts are saved on your local drive, so you can save them by
    copying those files elsewhere. In Windows you'll find them in the
    Documents and Settings folder, under your user profile, e.g.
    C:\Documents and Settings\<username>\Local
    Settings\Application Data\Macromedia\Contribute 3\Sites\Site1
    In that specific numbered Site folder will be the drafts and
    new pages you're working on. The problem you may run into is that
    the remote web server has a record of what files you have checked
    out. When you start editing a page, Contribute places a .lck file
    on the web server to prevent other users editing the same page.
    That .lck file contains your username, and they're all going to
    have to be in synch with what you have in the local Site
    folder.

  • Contorl site access with Contribute.. Dreamweaver too??

    I know I can control authoring access to my site using
    Contribute, and I
    do. I'm wondering if it's also possible to add some level of
    security
    for Dreamweaver users, so that certain users can only access
    certain
    folder, and/or cannot delete or edit others??
    While contribute works well for small and individual files,
    I'm finding
    that any time my authors screw up, such as have a page using
    the same
    image 100 times, which then gets turned into 100 different
    images by
    Contribute, it's me that has to clean up after them.. and I'm
    kind busy
    for that stuff. If I could give team leaders Dreamweaver to
    allow them
    to clean up and mass delete some files, but still control
    which folders
    they have access to, life would be easier for me.
    Thanks
    Kevin

    Kevin
    DW assumes that the user knows what they are doing most of
    the time hence it
    is open control. CT assumes the opposite, so the short answer
    is no.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "Kevin Blount" <[email protected]> wrote in
    message
    news:ee6b9i$qn7$[email protected]..
    >I know I can control authoring access to my site using
    Contribute, and I
    >do. I'm wondering if it's also possible to add some level
    of security for
    >Dreamweaver users, so that certain users can only access
    certain folder,
    >and/or cannot delete or edit others??
    >
    > While contribute works well for small and individual
    files, I'm finding
    > that any time my authors screw up, such as have a page
    using the same
    > image 100 times, which then gets turned into 100
    different images by
    > Contribute, it's me that has to clean up after them..
    and I'm kind busy
    > for that stuff. If I could give team leaders Dreamweaver
    to allow them to
    > clean up and mass delete some files, but still control
    which folders they
    > have access to, life would be easier for me.
    >
    > Thanks
    >
    > Kevin

  • Site Members having contribute permissions can see the "Approve It" yellow bar under the ribbon but it is not clickable

    Hello All,
    I am facing a weird behavior from SharePoint. I added a couple of users in the Members Group having Contribute permissions.
    Whenever the user open any pending page, a yellow bar appears stating "Waiting for approval
    Visitors can't see this page until it's approved.
    Approve it." But it is not clickable.
    The users don't have the permissions to approve the pages.

    In order to approve list items in SharePoint using content approval Full control permission is required on that list. You can create a custom Permission level to accomplish it with contribute access + approval if you require that functionality.
    You may also go into the list settings > Versioning settings and change the Draft Item security to only allow approvers and the creator of the content to see the item unless it's approved because It seems like it's set currently to those that can edit
    items, but they can't approve.

  • Can't connect to all sites outside from inside

    Dear forum,
    For some reason there are some sites that I cannot access websites from inside interface.
    One such example is lxer.com where I am receiving this message in the browser:
    The connection has timed out
              The server at www.lxer.com is taking too long to respond.
    This has "suddenly" happened, and so I am wondering what others have done when such things has happened.
    My outside has a dhcp-IP, and I have noticed that this address had changed, so I corrected this in my router settings.
    ASA version is 5505
    These are my settings:
    : Saved
    ASA Version 8.4(2)
    hostname ciscoasa
    domain-name example.no
    enable password 123412321 encrypted
    passwd 1231231 encrypted
    names
    interface Ethernet0/0
    switchport access vlan 2
    speed 100
    duplex full
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    switchport access vlan 12
    interface Ethernet0/6
    interface Ethernet0/7
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.1.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address dhcp
    interface Vlan12
    no forward interface Vlan1
    nameif DMZ
    security-level 50
    ip address 192.168.2.1 255.255.255.0
    ftp mode passive
    clock timezone CEST 1
    clock summer-time CEDT recurring last Sun Mar 2:00 last Sun Oct 3:00
    dns domain-lookup inside
    dns domain-lookup outside
    dns domain-lookup DMZ
    dns server-group DefaultDNS
    name-server 193.75.75.75
    name-server 192.168.1.11
    name-server 192.168.1.12
    name-server 193.75.75.193
    domain-name example.no
    same-security-traffic permit intra-interface
    object network obj_any
    subnet 0.0.0.0 0.0.0.0
    object network inside-net
    subnet 192.168.1.0 255.255.255.0
    object network NETWORK_OBJ_10.10.10.0_28
    subnet 10.10.10.0 255.255.255.240
    object network NETWORK_OBJ_192.168.1.128_27
    subnet 192.168.1.128 255.255.255.224
    object network NETWORK_OBJ_192.168.1.0_24
    subnet 192.168.1.0 255.255.255.0
    object network NETWORK_OBJ_192.168.254.0_28
    subnet 192.168.254.0 255.255.255.240
    object network dmz-ftpserver
    host 192.168.2.101
    description FTP server Host Object
    object network dmz-webserver
    host 192.168.2.100
    description Web Server Host Object
    object network ftp-server
    object service FTP
    service tcp source eq ftp
    object service WWW
    service tcp source eq www
    object network DMZ.net
    subnet 192.168.2.0 255.255.255.0
    object-group protocol TCPUDP
    protocol-object udp
    protocol-object tcp
    object-group network NET-VPNPOOL
    network-object 86.62.136.0 255.255.255.0
    access-list outside_access_in extended permit tcp any host 192.168.2.101 eq ftp
    access-list outside_access_in extended permit tcp any host 192.168.2.100 eq www
    access-list VPN-FOO_splitTunnelAcl standard permit 192.168.1.0 255.255.255.0
    access-list inside_access_dmz extended permit tcp any object DMZ.net range 1 65535
    pager lines 24
    logging enable
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    mtu DMZ 1500
    ip local pool VPN-Pool 192.168.254.1-192.168.254.10 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    nat (DMZ,outside) source static dmz-webserver interface service WWW WWW
    nat (DMZ,outside) source static dmz-ftpserver interface service FTP FTP
    nat (inside,outside) source static any any destination static NETWORK_OBJ_10.10.10.0_28 NETWORK_OBJ_10.10.10.0_28 no-proxy-arp route-lookup
    nat (inside,outside) source static any any destination static NETWORK_OBJ_192.168.1.128_27 NETWORK_OBJ_192.168.1.128_27 no-proxy-arp route-lookup
    nat (inside,outside) source static NETWORK_OBJ_192.168.1.0_24 NETWORK_OBJ_192.168.1.0_24 destination static NETWORK_OBJ_192.168.254.0_28 NETWORK_OBJ_192.168.254.0_28 no-proxy-arp route-lookup
    nat (outside,outside) source dynamic NET-VPNPOOL interface
    object network obj_any
    nat (inside,outside) dynamic interface
    object network inside-net
    nat (inside,outside) dynamic interface
    object network DMZ.net
    nat (DMZ,outside) dynamic interface
    access-group outside_access_in in interface outside
    route outside 0.0.0.0 0.0.0.0 86.62.136.44 1
    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
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    user-identity default-domain LOCAL
    aaa authentication enable console LOCAL
    aaa authentication http console LOCAL
    aaa authentication ssh console LOCAL
    aaa authorization command LOCAL
    aaa authorization exec authentication-server
    http server enable
    http 192.168.1.0 255.255.255.0 inside
    http 192.168.1.1 255.255.255.255 outside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart
    crypto ipsec ikev1 transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set pfs
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set ikev1 transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto map outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map outside_map interface outside
    crypto ca trustpoint _SmartCallHome_ServerCA
    crl configure
    crypto ca certificate chain _SmartCallHome_ServerCA
    certificate ca 6ecc7aa5a7032009b8cebcf4e952d491
        308205ec 308204d4 a0030201 0202106e cc7aa5a7 032009b8 cebcf4e9 52d49130
        0d06092a 864886f7 0d010105 05003081 ca310b30 09060355 04061302 55533117
        30150603 55040a13 0e566572 69536967 6e2c2049 6e632e31 1f301d06 0355040b
        13165665 72695369 676e2054 72757374 204e6574 776f726b 313a3038 06035504
        0b133128 63292032 30303620 56657269 5369676e 2c20496e 632e202d 20466f72
        20617574 686f7269 7a656420 75736520 6f6e6c79 31453043 06035504 03133c56
        65726953 69676e20 436c6173 73203320 5075626c 69632050 72696d61 72792043
        65727469 66696361 74696f6e 20417574 686f7269 7479202d 20473530 1e170d31
        30303230 38303030 3030305a 170d3230 30323037 32333539 35395a30 81b5310b
        30090603 55040613 02555331 17301506 0355040a 130e5665 72695369 676e2c20
        496e632e 311f301d 06035504 0b131656 65726953 69676e20 54727573 74204e65
        74776f72 6b313b30 39060355 040b1332 5465726d 73206f66 20757365 20617420
        68747470 733a2f2f 7777772e 76657269 7369676e 2e636f6d 2f727061 20286329
        3130312f 302d0603 55040313 26566572 69536967 6e20436c 61737320 33205365
        63757265 20536572 76657220 4341202d 20473330 82012230 0d06092a 864886f7
        0d010101 05000382 010f0030 82010a02 82010100 b187841f c20c45f5 bcab2597
        a7ada23e 9cbaf6c1 39b88bca c2ac56c6 e5bb658e 444f4dce 6fed094a d4af4e10
        9c688b2e 957b899b 13cae234 34c1f35b f3497b62 83488174 d188786c 0253f9bc
        7f432657 5833833b 330a17b0 d04e9124 ad867d64 12dc744a 34a11d0a ea961d0b
        15fca34b 3bce6388 d0f82d0c 948610ca b69a3dca eb379c00 48358629 5078e845
        63cd1941 4ff595ec 7b98d4c4 71b350be 28b38fa0 b9539cf5 ca2c23a9 fd1406e8
        18b49ae8 3c6e81fd e4cd3536 b351d369 ec12ba56 6e6f9b57 c58b14e7 0ec79ced
        4a546ac9 4dc5bf11 b1ae1c67 81cb4455 33997f24 9b3f5345 7f861af3 3cfa6d7f
        81f5b84a d3f58537 1cb5a6d0 09e4187b 384efa0f 02030100 01a38201 df308201
        db303406 082b0601 05050701 01042830 26302406 082b0601 05050730 01861868
        7474703a 2f2f6f63 73702e76 65726973 69676e2e 636f6d30 12060355 1d130101
        ff040830 060101ff 02010030 70060355 1d200469 30673065 060b6086 480186f8
        45010717 03305630 2806082b 06010505 07020116 1c687474 70733a2f 2f777777
        2e766572 69736967 6e2e636f 6d2f6370 73302a06 082b0601 05050702 02301e1a
        1c687474 70733a2f 2f777777 2e766572 69736967 6e2e636f 6d2f7270 61303406
        03551d1f 042d302b 3029a027 a0258623 68747470 3a2f2f63 726c2e76 65726973
        69676e2e 636f6d2f 70636133 2d67352e 63726c30 0e060355 1d0f0101 ff040403
        02010630 6d06082b 06010505 07010c04 61305fa1 5da05b30 59305730 55160969
        6d616765 2f676966 3021301f 30070605 2b0e0302 1a04148f e5d31a86 ac8d8e6b
        c3cf806a d448182c 7b192e30 25162368 7474703a 2f2f6c6f 676f2e76 65726973
        69676e2e 636f6d2f 76736c6f 676f2e67 69663028 0603551d 11042130 1fa41d30
        1b311930 17060355 04031310 56657269 5369676e 4d504b49 2d322d36 301d0603
        551d0e04 1604140d 445c1653 44c1827e 1d20ab25 f40163d8 be79a530 1f060355
        1d230418 30168014 7fd365a7 c2ddecbb f03009f3 4339fa02 af333133 300d0609
        2a864886 f70d0101 05050003 82010100 0c8324ef ddc30cd9 589cfe36 b6eb8a80
        4bd1a3f7 9df3cc53 ef829ea3 a1e697c1 589d756c e01d1b4c fad1c12d 05c0ea6e
        b2227055 d9203340 3307c265 83fa8f43 379bea0e 9a6c70ee f69c803b d937f47a
        6decd018 7d494aca 99c71928 a2bed877 24f78526 866d8705 404167d1 273aeddc
        481d22cd 0b0b8bbc f4b17bfd b499a8e9 762ae11a 2d876e74 d388dd1e 22c6df16
        b62b8214 0a945cf2 50ecafce ff62370d ad65d306 4153ed02 14c8b558 28a1ace0
        5becb37f 954afb03 c8ad26db e6667812 4ad99f42 fbe198e6 42839b8f 8f6724e8
        6119b5dd cdb50b26 058ec36e c4c875b8 46cfe218 065ea9ae a8819a47 16de0c28
        6c2527b9 deb78458 c61f381e a4c4cb66
      quit
    crypto ikev1 enable outside
    crypto ikev1 policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet timeout 5
    ssh 192.168.1.0 255.255.255.0 inside
    ssh 0.0.0.0 0.0.0.0 outside
    ssh timeout 30
    console timeout 0
    management-access inside
    no vpn-addr-assign aaa
    no vpn-addr-assign dhcp
    dhcpd domain inside-sport.no
    dhcpd auto_config outside
    dhcpd address 192.168.1.20-192.168.1.49 inside
    dhcpd dns 192.168.1.11 192.168.1.12 interface inside
    dhcpd domain inside-sport.no interface inside
    dhcpd enable inside
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    ntp authenticate
    ntp server 193.150.22.7 source outside
    webvpn
    group-policy VPN-FOO internal
    group-policy VPN-FOO attributes
    dns-server value 192.168.1.11 193.75.75.193
    vpn-tunnel-protocol ikev1
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value VPN-FOO_splitTunnelAcl
    default-domain value inside-sport.no
    username polkadott password 12332131 encrypted privilege 15
    username afrocircus password 123132 encrypted privilege 15
    username foobar password sdafsdfsda encrypted
    username foobar attributes
    service-type remote-access
    username barfoo password 1313131 encrypted privilege 0
    username barfoo attributes
    service-type remote-access
    tunnel-group VPN-FOO type remote-access
    tunnel-group VPN-FOO general-attributes
    address-pool VPN-Pool
    default-group-policy VPN-FOO
    tunnel-group VPN-FOO ipsec-attributes
    ikev1 pre-shared-key *****
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny 
      inspect sunrpc
      inspect xdmcp
      inspect sip 
      inspect netbios
      inspect tftp
      inspect ip-options
    service-policy global_policy global
    prompt hostname context
    call-home reporting anonymous
    call-home
    profile CiscoTAC-1
      no active
      destination address http https://tools.cisco.com/its/service/oddce/services/DDCEService
      destination address email [email protected]
      destination transport-method http
      subscribe-to-alert-group diagnostic
      subscribe-to-alert-group environment
      subscribe-to-alert-group inventory periodic monthly
      subscribe-to-alert-group configuration periodic monthly
      subscribe-to-alert-group telemetry periodic daily
    Cryptochecksum:f3b732b91e291d6ad7ae12aaa271b31b
    : end
    no asdm history enable
    Output of show version
    Cisco Adaptive Security Appliance Software Version 8.4(2)
    Device Manager Version 6.4(5)
    Compiled on Wed 15-Jun-11 18:17 by builders
    System image file is "disk0:/asa842-k8.bin"
    Config file at boot was "startup-config"
    ciscoasa up 230 days 23 hours
    Hardware:   ASA5505, 512 MB RAM, CPU Geode 500 MHz
    Internal ATA Compact Flash, 128MB
    BIOS Flash M50FW016 @ 0xfff00000, 2048KB
    Encryption hardware device : Cisco ASA-5505 on-board accelerator (revision 0x0)
                                 Boot microcode        : CN1000-MC-BOOT-2.00
                                 SSL/IKE microcode     : CNLite-MC-SSLm-PLUS-2.03
                                 IPSec microcode       : CNlite-MC-IPSECm-MAIN-2.06
                                 Number of accelerators: 1
    0: Int: Internal-Data0/0    : address is ccef.4892.00b0, irq 11
    1: Ext: Ethernet0/0         : address is ccef.4892.00a8, irq 255
    2: Ext: Ethernet0/1         : address is ccef.4892.00a9, irq 255
    3: Ext: Ethernet0/2         : address is ccef.4892.00aa, irq 255
    4: Ext: Ethernet0/3         : address is ccef.4892.00ab, irq 255
    5: Ext: Ethernet0/4         : address is ccef.4892.00ac, irq 255
    6: Ext: Ethernet0/5         : address is ccef.4892.00ad, irq 255
    7: Ext: Ethernet0/6         : address is ccef.4892.00ae, irq 255
    8: Ext: Ethernet0/7         : address is ccef.4892.00af, irq 255
    9: Int: Internal-Data0/1    : address is 0000.0003.0002, irq 255
    10: Int: Not used            : irq 255
    11: Int: Not used            : irq 255
    Licensed features for this platform:
    Maximum Physical Interfaces       : 8              perpetual
    VLANs                             : 3              DMZ Restricted
    Dual ISPs                         : Disabled       perpetual
    VLAN Trunk Ports                  : 0              perpetual
    Inside Hosts                      : 10             perpetual
    Failover                          : Disabled       perpetual
    VPN-DES                           : Enabled        perpetual
    VPN-3DES-AES                      : Enabled        perpetual
    AnyConnect Premium Peers          : 2              perpetual
    AnyConnect Essentials             : Disabled       perpetual
    Other VPN Peers                   : 10             perpetual
    Total VPN Peers                   : 25             perpetual
    Shared License                    : Disabled       perpetual
    AnyConnect for Mobile             : Disabled       perpetual
    AnyConnect for Cisco VPN Phone    : Disabled       perpetual
    Advanced Endpoint Assessment      : Disabled       perpetual
    UC Phone Proxy Sessions           : 2              perpetual
    Total UC Proxy Sessions           : 2              perpetual
    Botnet Traffic Filter             : Disabled       perpetual
    Intercompany Media Engine         : Disabled       perpetual
    This platform has a Base license.

    I did a wget to www.digi.no and in the capture I am seeing this:
    5965: 11:47:13.287948 802.1Q vlan#1 P0 192.168.1.22.56369 > 74.125.143.109.993: . ack 4203439682 win 331
    5966: 11:47:13.289779 802.1Q vlan#1 P0 192.168.1.22.33903 > 81.27.47.164.143: P 1147057306:1147057319(13) ack 4094693130 win 331
    5967: 11:47:13.317488 802.1Q vlan#1 P0 81.27.47.164.143 > 192.168.1.22.33903: P 4094693130:4094693156(26) ack 1147057319 win 91
    5968: 11:47:13.317717 802.1Q vlan#1 P0 192.168.1.22.33903 > 81.27.47.164.143: . ack 4094693156 win 331
    5969: 11:47:13.335660 802.1Q vlan#1 P0 192.168.1.22.33905 > 81.27.47.164.143: P 1946962938:1946962951(13) ack 3747978698 win 190
    5970: 11:47:13.362942 802.1Q vlan#1 P0 81.27.47.164.143 > 192.168.1.22.33905: P 3747978698:3747978724(26) ack 1946962951 win 91
    5971: 11:47:13.363094 802.1Q vlan#1 P0 192.168.1.22.33905 > 81.27.47.164.143: . ack 3747978724 win 190
    5972: 11:47:13.387751 802.1Q vlan#1 P0 192.168.1.22.46864 > 192.168.1.1.22: P 3937008649:3937008697(48) ack 2079733693 win 65535
    5973: 11:47:13.387827 802.1Q vlan#1 P0 192.168.1.1.22 > 192.168.1.22.46864: . ack 3937008697 win 32768
    5974: 11:47:13.388987 802.1Q vlan#1 P0 192.168.1.1.22 > 192.168.1.22.46864: P 2079733693:2079733741(48) ack 3937008697 win 32768
    5975: 11:47:13.391062 802.1Q vlan#1 P0 192.168.1.22.46864 > 192.168.1.1.22: . ack 2079733741 win 65535
    5976: 11:47:13.391916 802.1Q vlan#1 P0 192.168.1.1.22 > 192.168.1.22.46864: P 2079733741:2079733789(48) ack 3937008697 win 32768
    5977: 11:47:13.392618 802.1Q vlan#1 P0 192.168.1.1.22 > 192.168.1.22.46864: P 2079733789:2079733853(64) ack 3937008697 win 32768
    5978: 11:47:13.392664 802.1Q vlan#1 P0 192.168.1.22.46864 > 192.168.1.1.22: . ack 2079733789 win 65535
    Some more setup.
    In the host server that runs some guest virtual box virtual servers I have this route.
    route -n
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0
    192.168.254.0   192.168.1.1     255.255.255.0   UG    0      0        0 eth0
    192.168.2.0     0.0.0.0         255.255.254.0   U     0      0        0 eth1
    0.0.0.0         192.168.2.1     0.0.0.0         UG    0      0        0 eth1
    where 192.168.2.1 is the IP for the DMZ
    On the two DNS-servers I have, the routing table looks like this:
    routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0
    0.0.0.0         192.168.1.1     0.0.0.0         UG    100    0        0 eth0

  • Which download do i need to buy: contribute 6.5 or contribute 6.5 User

    i need to upgrade from Contribute 3.  i need to update my website - the content and the "border" - the template that shows my name, email address, etc.  But how do i know which to purchase from Adobe?  The "Contribute 6.5" or the "Contribute 6.5 User"  ???   Very disappointed that Adobe doesn't seem to have a purchasing department help 'line.'   Can anyone advise the difference?  Thank you!

    Yes. Lion requires that you have v10.6.8 installed before you can upgrade to Lion. Reason being is you need to have access to the Mac App Store in order to download Lion.
    Lion requires an Intel-based Mac with a Core 2 Duo, i3, i5, i7 or Xeon processor and 2GB of RAM
    Mac OS X 10.6 Snow Leopard - Apple Store

  • I need help modifying my iWeb site from another Mac than the one it was designed on:

    I did exactly as directed in the Help file "to Modify your site from another computer", but when I click on the Domain file it launches iWeb to start a new website without anything from the site I created. The Macs are a mirror image of each other with the same iWeb version 3.0.4. I am transitioning from my MacBook to my new iMac, so the laptop files were all transferred to the iMac by the Apple Store when I bought it. The only difference is that the laptop is OS 10.6.8, and the new iMac is OS 10.7.5. After the transfer of all the files at the store, I proceeded to make the website on the laptop, but now need to work on the website from my iMac...but I need help getting the file to work on the iMac.
    PLEASE HELP!
    Thanks!

    The trick that solved it for me was the last note about how to make the hidden folder appear (due to Lion OS 10.75):
    Note for OS X Lion users :
    To show the hidden Library folder in the Home Directory (Cmd-Shift-H) hold the Option (=Alt) key when choosing theGo menu in the Finder.
    Thanks!

  • Modifying Scene from the outside

    How do you modify an object in a scene from outside.
    Lets say, i want to move an object left when i press the left key.
    How do i tell the scene to move the object from the keyPressed function?
    A code example would help

    You can keep a referenct to a TransformGroup, and set the transform3D when an ActionEvent is dispatched from a Button.
    Masa.

Maybe you are looking for

  • Keynote presentation in more than one ipad at the same time

    Hi, I'm preparing a keynote presentation for a client who will be handing out various ipads in the meeting and I'm wondering if there is a way to keep everybody's ipad on the same slide and move to the next one when desired. Is there an option for th

  • Java script no longer working

    On my BB8530 w/Virgin Mobile, I changed my BB ID today, I have latest updates etc.I received the email to confirm my changes, clicked on the address it sent me, went to the page and got an error message saying java sript was no longer available on my

  • Importing XML files into FCP 6

    I recorded some footage using a Panasonic P2camera. I sent the files across to my media drive using fire wire but when I try to import the XML files from my media drive into FCP it tells me: *Please choose a translation document file*. Do I need a dr

  • Process triggered by file upload - is GP the right tool?

    Hello All, I have a process I need to model that starts with a file upload from the user, followed by some manipulation of the file by some web services. Is GP the right tool for modeling that process? After completing the file upload action, how can

  • Script to comp 2  tables and the difference to be captured in another table

    Hi All, I had an urgent requirement and i hope you will answer me and thanks a lot. I had two tables (one is custom table i created and another is base table).I created the custom table based upon the base table. Now,my requirement is that i need to