DNS request behind content switch: troubleshooting

Hi, sometimes we experience problems resolving a dns name behind a content switch. The problem solves himself after 5 minutes or something like that. We see the dns request on the dns servers subnet. It looks like the is a problem when the packet returns. I'm thinking of a nat problem. How can i best troubleshoot this?

Can i e-mail you the config file? I will also e-mail as soon as possible a network capture in front of the CSS. Where can i e-mail it? For the moment dns is working so i will have to wait for network capture untill it fails again.
Kind regards,
Frederik De Muyter
[email protected]

Similar Messages

  • Content Switch sending request to both servers

    Hi,
    I have following configuration on the content switch and it send the request to both the servers. due to two tcp stream from going via two different server it second request fails and generate false alerts.
    It was working fine but since last week it is giving lot of false alerts.
    content StatePMVQLMVMS_8PR3
        vip address X.X.X.X
        add service W8PRAKLQLM01_StateVMS_8HTTP3
        add service W8PRAKLQLM02_StateVMS_8HTTP3
        advanced-balance sticky-srcip
        port XXXX
        protocol tcp
        active
    Please let me know what should I check to get this fixed. I hardly work with content switch.
    Is there a way I can set up to send all the request to primary server and when it dies then and only then it send a request to secondary and when primary comes back online it restore back to primary ????
    I am fine if it does not load balance .. but at least it stop sending false alerts..
    Thanks.

    Hi Nilay,
    You have configured sticky based on src-ip which means that as long as src IP remains same  the user would be sent to the same server.
    Now a situation where CSS starts sending the request to different servers could be due to the fact that sticky table was full. In that situation a new connection from same user will be load balanced according to the LB method.  If the sticky table is full and none of the sticky entries has expired, the CSS rejects the new sticky request.
    You can use sticky-inact-timeout to ensure that sticky entries flush out after they have been inactive for some amount of time.
    Please visit the below link for more details about it.
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/css11500series/v8.20/configuration/content_lb/guide/cntntgd.pdf
    Regards,
    Kanwal

  • Cisco Content Switch 11503

    Directed towards any users of this product line out there.
    I have a client who is on the older hardware platform (11100);. and is
    looking to invest in a pair of new switches/balancers. I have the follwoing
    outsntanding questions that i'm needing to confirm on the 11503
    - Source NAT - is this required to always be on? for marketing, reporting and debugging purposes, we're wanting to ensure we can have the client's original ip address preserved once request hits web/app, not rewritten at the content switch.
    - sessions - any concerns running up to 30 - 50k of simultaeous sessions on
    the 11503? require the the addt'l session accel modeule?
    thanks for the input.
    > Byron
    > www.kennedytechgroup.com

    Byron,
    source nat is not a requirement of the CSS.
    It depends how you design your network and where you place the CSS.
    If you do not want source nat, make sure the servers are placed behind the CSS and that the path from server to client always goes through the CSS.
    For the amount of connections, each module can handle up to 200k concurrent connections.
    So, the CSS with only 1 module should be ok.
    Gilles.

  • DNS requests from Solaris 10 box to Bind/MySQL DNS server fail

    We have some servers running solaris 9 and some running solaris 10. We also have a DNS server setup running BIND with the MySQL backend. When I query the DNS server from our solaris 9 boxes, they always work just fine. However, when I query the DNS server from our solaris 10 boxes, they always fail. Queries to other DNS servers from the Solaris 10 boxes work just fine - they only fail when being sent to this particular DNS server. Here's exactly what I'm doing:
    ON SOLARIS 9 BOX:
    bash-3.00$ nslookup google.com calo-sunset
    Server: calo-sunset
    Address: <IP_OF_DNS_SERVER>#53
    Non-authoritative answer:
    Name: google.com
    Address: 64.233.187.99
    Name: google.com
    Address: 72.14.207.99
    Name: google.com
    Address: 209.85.171.99
    ON SOLARIS 10 BOX:
    bash-2.05$ nslookup google.com calo-sunset
    *** Can't find server name for address <IP_OF_DNS_SERVER>: Non-existent host/domain
    *** Default servers are not available
    In the case of the SOLARIS 10 box, <IP_OF_DNS_SERVER> is correct - it knows the IP address of the DNS server, but apparently it doesn't recognize that it's actually a DNS server.
    I am utterly perplexed by this. It seems to me that a DNS request is a DNS request, regardless of your OS. Clearly something is different from Solaris 9 to Solaris 10 though because the requests fail on all of our solaris 10 boxes, and they succeed on all of our Solaris 9 boxes. Incidentally, dig requests from the Solaris 10 box also fail, where they succeed on the Solaris 9 boxes.
    I don't really know what other information I could offer that might be useful. If you have any information at all about this or ideas on what I might try to troubleshoot/fix it, I'd love to hear it. Thanks in advance.

    First off, I am an idiot. I got this entire post backwards. The fact is that the DNS requests work swimmingly well on our Solaris 10 boxes. They fail on our Solaris 9 boxes. I don't know how I managed to read this post all of these times and not notice that I got that backwards. Nice.
    In any case, I've found the problem. It was non-trivial to me because I am not terribly familiar with the inner-workings of DNS. To those who are, it may seem painfully obvious. To me it certainly was not.
    The problem was that the DNS server (BIND 9 with MySQL backend) did not contain a reverse DNS entry for itself. Apparently this is a big problem for Solaris 9. I got a hint that this might be the cause when I turned on verbose debugging info when I ran nslookup (nslookup -d2). I had to add the PTR record for the DNS server itself. I don't know why Solaris 9 would require that a DNS server contain reverse DNS information about itself, but sure enough it does. As soon as I added that info, the Solaris 9 boxes were able to successfully query the DNS server. Very odd.
    Anyway, I doubt anyone else will come across this problem, but if you do, now you know something that might fix it.
    Edited by: dprater on Oct 7, 2008 8:09 PM

  • SAP talking to another sever that is load balancing (with a content switch)

    Hi All,
    We are retrieving some files from an external server in SAP from an ABAP report using HTTP. The external server is also load balacing on 3 servers. There is a content server (proxy server) which carries the sap request to one of the three servers.
    We are able to retrieve the files when we directly connect to one of the three server, However when SAP calls the content server, we get a HTTP code error -404 Status - Not found. Here is the excerpt of code where this error is coming up-
    CALL METHOD w_http_client->response->get_status
    IMPORTING
    code = lv_http_code
    reason = lv_status_text.
    The external server (content server) is supposed to be transparent and thus SAP should be able to connect. But this does not happen.
    Any ideas?
    Thanks in advance! Liz

    We are now connecting SAP directly one server since we could not connect to the content switch.
    Thanks, Liz

  • SL constantly making DNS requests for "local" ?

    I've been troubleshooting a problem with my DSL router crashing and noticed that my Macs continuously, even when idle, have nearly 200 open connections at any given time, whereas my Windows boxes peak at 50 and drop down to under 10 when idle. The Macs are running SL 10.6.2.
    Poking around in the router logs, I found that the Macs are constantly making udp DNS requests to my router, even when I'm not browsing or doing anything else. tcpdump of udp and port 53 gives me the following:
    00:21:53.371671 IP 192.168.0.8.59304 > 192.168.0.1.53: 18151+ SOA? local. (23)
    00:21:53.674232 IP 192.168.0.8.49916 > 192.168.0.1.53: 48169+ SOA? local. (23)
    00:21:53.977128 IP 192.168.0.8.52735 > 192.168.0.1.53: 25906+ SOA? local. (23)
    00:21:54.279836 IP 192.168.0.8.60409 > 192.168.0.1.53: 18252+ SOA? local. (23)
    00:21:54.582518 IP 192.168.0.8.52350 > 192.168.0.1.53: 61085+ SOA? local. (23)
    00:21:54.885866 IP 192.168.0.8.62450 > 192.168.0.1.53: 21082+ SOA? local. (23)
    00:21:55.189449 IP 192.168.0.8.56146 > 192.168.0.1.53: 32869+ SOA? local. (23)
    00:21:55.494834 IP 192.168.0.8.50517 > 192.168.0.1.53: 19194+ SOA? local. (23)
    00:21:55.797551 IP 192.168.0.8.52035 > 192.168.0.1.53: 7558+ SOA? local. (23)
    00:21:56.100390 IP 192.168.0.8.52101 > 192.168.0.1.53: 40847+ SOA? local. (23)
    00:21:56.403436 IP 192.168.0.8.52194 > 192.168.0.1.53: 6087+ SOA? local. (23)
    00:21:56.706299 IP 192.168.0.8.52347 > 192.168.0.1.53: 9339+ SOA? local. (23)
    00:21:57.009058 IP 192.168.0.8.56200 > 192.168.0.1.53: 25553+ SOA? local. (23)
    00:21:57.312098 IP 192.168.0.8.51976 > 192.168.0.1.53: 20703+ SOA? local. (23)
    00:21:57.616665 IP 192.168.0.8.54563 > 192.168.0.1.53: 54141+ SOA? local. (23)
    00:21:57.923536 IP 192.168.0.8.65097 > 192.168.0.1.53: 45734+ SOA? local. (23)
    00:21:58.226243 IP 192.168.0.8.54125 > 192.168.0.1.53: 33647+ SOA? local. (23)
    00:21:58.529128 IP 192.168.0.8.54571 > 192.168.0.1.53: 17218+ SOA? local. (23)
    00:21:58.831897 IP 192.168.0.8.60218 > 192.168.0.1.53: 48469+ SOA? local. (23)
    00:21:59.135020 IP 192.168.0.8.60466 > 192.168.0.1.53: 37003+ SOA? local. (23)
    00:21:59.437998 IP 192.168.0.8.58798 > 192.168.0.1.53: 17670+ SOA? local. (23)
    00:21:59.741022 IP 192.168.0.8.60276 > 192.168.0.1.53: 47469+ SOA? local. (23)
    00:22:00.055207 IP 192.168.0.8.57066 > 192.168.0.1.53: 20384+ SOA? local. (23)
    00:22:00.360458 IP 192.168.0.8.50152 > 192.168.0.1.53: 29721+ SOA? local. (23)
    00:22:00.663357 IP 192.168.0.8.63487 > 192.168.0.1.53: 35833+ SOA? local. (23)
    00:22:00.966073 IP 192.168.0.8.64900 > 192.168.0.1.53: 34951+ SOA? local. (23)
    00:22:01.271649 IP 192.168.0.8.64314 > 192.168.0.1.53: 25719+ SOA? local. (23)
    00:22:01.574530 IP 192.168.0.8.55922 > 192.168.0.1.53: 5842+ SOA? local. (23)
    00:22:01.877146 IP 192.168.0.8.51874 > 192.168.0.1.53: 59071+ SOA? local. (23)
    00:22:02.179921 IP 192.168.0.8.56913 > 192.168.0.1.53: 43487+ SOA? local. (23)
    00:22:02.482738 IP 192.168.0.8.62907 > 192.168.0.1.53: 26628+ SOA? local. (23)
    00:22:02.785409 IP 192.168.0.8.51599 > 192.168.0.1.53: 57463+ SOA? local. (23)
    00:22:03.088321 IP 192.168.0.8.60417 > 192.168.0.1.53: 8857+ SOA? local. (23)
    00:22:03.391227 IP 192.168.0.8.57872 > 192.168.0.1.53: 36002+ SOA? local. (23)
    00:22:03.694211 IP 192.168.0.8.58774 > 192.168.0.1.53: 1662+ SOA? local. (23)
    192.168.0.8 is my Mac and 192.168.0.1 is my DSL router. The Mac is ip'd using DHCP on the router. The router sends DNS requests from my clients out to my ISPs DNS servers.
    Eventually, the DNS requests timeout and I get this:
    00:21:43.145103 IP 205.171.3.65.53 > 192.168.0.8.52959: 38258 NXDomain 0/1/0 (98)
    00:21:43.450086 IP 205.171.3.65.53 > 192.168.0.8.55938: 46832 NXDomain 0/1/0 (98)
    00:21:43.763304 IP 205.171.3.65.53 > 192.168.0.8.50265: 62399 NXDomain 0/1/0 (98)
    00:21:44.049705 IP 205.171.3.65.53 > 192.168.0.8.59991: 5960 NXDomain 0/1/0 (98)
    It's a never-ending cycle that eventually kills my router.
    If I'm reading the tcpdump output correctly, SL appears to be looking for some server named "local" 3 times every second. The TTL is roughly 90 seconds, so 3 requests/second gets me to an average of 180 connections at any give time -- which is approximately what my router is showing. If I do start browsing the connection count goes even higher. Trying to use both Macs at the same time has caused my router to crash due to running out of memory (it's obviously a very weak router .
    Can someone give me some insight into what SL is doing and how I can stop this?
    Thanks,
    Randy

    Does this server handle DNS requests?
    If so, make sure under the local static IP for DNS servers you can try 127.0.0.1, and server IP.
    Under the DNS tab make sure you have the ISP IP's under forwarder.
    As a safety open terminal and run
    su changeip -checkhostname

  • Content Switch replacing Client IP in IIS Logs

    Hello Guys,
    I have been facing this problem ever since we configured our content switch infront of our web server. The IIS logs in the web server now show the content switch IP in the 'c-ip' column.
    Below is configuration for the website:
    service GlobalInv
      port 80
      protocol tcp
      ip address 172.21.21.31
      active
    owner GlobalWebSite
      content GlobalInv-http
        vip address 172.21.21.52
        add service GlobalInv
        port 80
        protocol tcp
        advanced-balance sticky-srcip
        active
    group GlobalInv
      vip address 172.21.21.52
      add destination service GlobalInv
      active
    Can someone please help me tellin as to how I can have the actual client IP addresses shown in my IIS logs instead of the content switch IP.
    Please this is very important to us.

    Thanks Jim,
    I am sorry but am not an export in CCS, it would be a great help to me if you can instruct me on how I can actually achieve this.
    I have already set the default gateway of my web server to the Content switch.
    My topology is quite simple, both the content switch & the web server are in the DMZ zone (same subnet) and are connected to the same switch. Users from outside & inside the company access our corporate website through the content switch
    Below is the configuration of my content switch (with the related config marked in red):
    CSS-GLOBAL# sh runn
    !Generated on 10/26/2010 23:14:04
    !Active version: sg0810106
    configure
    !*************************** GLOBAL ***************************
      dns primary 172.21.1.13
      dns secondary 192.168.0.50
      ssl associate rsakey eglobal eglobal.pem
      ssl associate cert eglobal-selfsigned eglobal.selfsigned.pem
      ssl associate rsakey glopedia glopedia.pem
      ssl associate cert glopedia glopedia.selfsigned.pem
      ssl associate cert eglobal-versign e-global-verisign.pem
      ssl associate cert glopedia-verisign glopedia-verisign.pem
      ssl associate cert EGlobal-Web EGlobal-Web.pem
      ssl associate cert EGlobal-Web-Chain EGlobal-Web.pem
      ssl associate cert Glopedia-Web-Chain Glopedia-Web.pem
      ftp-record conf 172.16.143.43 shahim des-password 1bnc2hnduhmgjend /
      ip route 0.0.0.0 0.0.0.0 172.21.21.1 1
      ip route 172.21.1.0 255.255.255.0 172.21.21.4 1
      ip route 172.16.0.0 255.255.0.0 172.21.21.4 1
      ip route 192.168.0.0 255.255.255.0 172.21.21.4 1
    !************************* INTERFACE *************************
    interface e1
      description "To Global Switch Foundary"
    !************************** CIRCUIT **************************
    circuit VLAN1
      ip address 172.21.21.49 255.255.255.0
    !*********************** SSL PROXY LIST ***********************
    ssl-proxy-list SSL-Proxy-List
      ssl-server 51
      ssl-server 51 rsakey eglobal
      ssl-server 51 vip address 172.21.21.51
      ssl-server 51 cipher rsa-with-rc4-128-md5 172.21.21.51 80 weight 10
      ssl-server 51 cipher rsa-with-rc4-128-sha 172.21.21.51 80 weight 8
      ssl-server 51 cipher rsa-export-with-rc4-40-md5 172.21.21.51 80 weight 5
      ssl-server 50
      ssl-server 50 rsakey glopedia
      ssl-server 50 vip address 172.21.21.50
      ssl-server 50 cipher rsa-with-rc4-128-md5 172.21.21.50 80 weight 10
      ssl-server 50 cipher rsa-with-rc4-128-sha 172.21.21.50 80 weight 8
      ssl-server 50 cipher rsa-export-with-rc4-40-md5 172.21.21.50 80 weight 5
      ssl-server 50 urlrewrite 1 *
      ssl-server 51 urlrewrite 1 *
      ssl-server 51 rsacert EGlobal-Web-Chain
      ssl-server 50 rsacert Glopedia-Web-Chain
      active
    !************************** SERVICE **************************
    service E-Global-https
      ip address 172.21.21.32
      port 80
      protocol tcp
      active
    service Ghalia
      port 81
      protocol tcp
      ip address 172.21.21.31
      active
    service GlobalInv
      port 80
      protocol tcp
      ip address 172.21.21.31
      active
    service dms
      ip address 172.21.1.115
      port 80
      protocol tcp
      keepalive type http
      active
    service eglobal-http
      port 80
      protocol tcp
      ip address 172.21.21.32
      keepalive type http
      active
    service email
      ip address 172.21.1.122
      port 80
      protocol tcp
      keepalive type http
      active
    service email123
      ip address 172.21.1.123
      port 80
      protocol tcp
      keepalive type http
      active
    service glopedia
      ip address 192.168.2.32
      port 80
      protocol tcp
      active
    service glopedia-expapps
      ip address 192.168.2.32
      port 4028
      protocol tcp
      active
    service secure-transfer
      type redirect
      no prepend-http
      ip address 172.21.21.32
      keepalive type none
      domain https://www.e-global.com.kw
      active
    service ssl-eglobal
      type ssl-accel
      keepalive type none
      slot 2
      add ssl-proxy-list SSL-Proxy-List
      active
    service workflow
      ip address 172.21.21.44
      port 80
      protocol tcp
      keepalive type http
      active
    !*************************** OWNER ***************************
    owner EGlobal
      content eglobal-http
        vip address 172.21.21.51
        no persistent
        protocol tcp
        port 80
        url "/*"
        add service eglobal-http
        active
      content eglobal-https
        vip address 172.21.21.51
        protocol tcp
        port 443
        add service ssl-eglobal
        active
    owner GhaliaWebSite
      content Ghalia-http
        vip address 172.21.21.53
        add service Ghalia
        protocol tcp
        port 80
        active
    owner GlobalWebSite
      content GlobalInv-http
        vip address 172.21.21.52
        add service GlobalInv
        port 80
        protocol tcp
        advanced-balance sticky-srcip
        active
    owner Glopedia
      content bpmweb
        vip address 172.21.21.50
        url "/workflow"
        protocol tcp
        port 80
        redirect "/bpmweb"
        active
      content cyberdocs
        vip address 172.21.21.50
        add service dms
        protocol tcp
        port 80
        url "/CyberDocs*"
        active
      content dms
        vip address 172.21.21.50
        url "/dms*"
        redirect "/CyberDocs"
        protocol tcp
        port 80
        active
      content email
        vip address 172.21.21.50
        no persistent
        url "/email"
        protocol tcp
        port 80
        redirect "/owa"
        active
      content glopedia-expapps
        vip address 172.21.21.50
        add service glopedia-expapps
        no persistent
        port 4028
        protocol tcp
        active
      content glopedia-http
        vip address 172.21.21.50
        add service glopedia
        no persistent
        protocol tcp
        port 80
        url "/*"
        active
      content glopedia-https
        vip address 172.21.21.50
        add service ssl-eglobal
        protocol tcp
        port 443
        active
      content owa
        vip address 172.21.21.50
        add service email123
        protocol tcp
        port 80
        url "/owa*"
        active
      content workflow
        vip address 172.21.21.50
        add service workflow
        no persistent
        protocol tcp
        port 80
        url "/bpmweb*"
        active
    !*************************** GROUP ***************************
    group Ghalia
      vip address 172.21.21.53
      add destination service Ghalia
      active
    group GlobalInv
      vip address 172.21.21.52
      add destination service GlobalInv
      active
    group dms
      vip address 172.21.21.50
      add destination service dms
      add destination service email
      add destination service workflow
      add destination service glopedia
      add destination service email123
      add destination service glopedia-expapps
      active
    group eglobal
      vip address 172.21.21.51
      add destination service eglobal-http
      active

  • WRT1900AC: Can it block DNS requests?

    Hello,
    Can the WRT1900AC block DNS request from devices in a home network to public DNS service like GoogleDNS? Can anyone tell me what steps are necessary to accomplish this?
    I tried to follow instructions found on the web but I could not add static routes under Advanced Routing, I got errors either about the network submask or the Gateway (mine is 192.168.1.1 and is not accepted). i don't know what to enter in these fields and also what Interface to select (LAN/Wireless or Internet).
    My firmware version is 1.1.8.164461.
    I would appreciate any help.
    Thank you,
    Luiz
    Solved!
    Go to Solution.

    Hi,
    Thanks for replying. I haven't contacted support yet to confirm you suspicion, My cable modem is a Motorola SB6141. I have done some basic research that indicates that it is not capable of NAT.
    However, I was able to configure a static route in my router,using the cable modem IP asgateway. After this my ping requests to Google DNS (8.8.8.8 and 8.8.4.4) started to fail. This is probably still not what I need. I don't understand why I can't save my router's IP as gateway as indicated here: http://help.unotelly.com/support/solutions/articles/193662-setup-static-routes-on-linksys-and-cisco-... This link alerts to a bug in Linksys routers but the error message I get is not "invalid static route" as indicated.
    Thanks,
    Luiz

  • Routing DNS requests in a zone to a default host

    Hi,
    What I'd like to do is to direct all DNS requests for non-existent hosts to a single host by default. So even if I haven't defined a hostname in my zone, the request will still resolve (to this default host). Any ideas?
    Ben

    It's possible to do via wildcard DNS, but you cannot do it via Server Admin (it doesn't permit the * for the wildcard name), therefore you have to get under the hood and edit your zone file directly.
    You'll need to find your zone's domain file in /var/named and add a line like:
    *  IN  A  1.2.3.4
    (where 1.2.3.4 is, obviously, the IP address you want all unknown addresses to point to).
    You'll also need to increment the serial number in the SOA record near the top of the file (otherwise your change won't be noticed)
    Restart named (e.g. via killall -HUP named or via Server Admin), and now any lookup for an unknown host will return the specified address.

  • DNS request timed out. timeout was 2 seconds. *** Request to self timed-out

    I am having an issue with one of my domain controllers (Server 2012 R2). It is a DNS server as well and it times out 100% of then time when attempting connect to either of the two trusted forests that are setup as conditional forwarders. There is also a
    delay or a time out the first few times when attempting to resolve an external site such as google.com. The domain controller functions fine. All routing seems to fine, because I can telnet on port 53 to the trusted forest's DCs. They can even use the problem
    DNS server to resolve hosts. It just does work from my controller to the other forest. Here is an example of what is happening.
    > external.forest.dc
    Server:  problem.local.dc
    Address:  192.168.1.8
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    *** Request to problem.local.dc timed-out
    > external.forest.dc
    Server:  problem.local.dc
    Address:  192.168.1.8
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    *** Request to problem.local.dc timed-out
    Google will resolve eventually resolve
    > google.com
    Server:  problem.local.dc
    Address:  192.168.1.8
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    *** Request to problem.local.dc timed-out
    > google.com
    Server:  problem.local.dc
    Address:  192.168.1.8
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    *** Request to problem.local.dc timed-out
    > google.com
    Server:  problem.local.dc
    Address:  192.168.1.8
    Non-authoritative answer:
    Name:    google.com
    Addresses:  2607:f8b0:4006:808::1001
              74.125.226.67
              74.125.226.66
              74.125.226.72
              74.125.226.69
              74.125.226.68
              74.125.226.70
              74.125.226.73
              74.125.226.64
              74.125.226.65
              74.125.226.71
              74.125.226.78
    The other DC works as it should:
    > external.forest.dc
    Server:  working.local.dc
    Address:  192.168.1.7
    Non-authoritative answer:
    Name:    external.forest.dc
    Address:  10.1.1.1
    There is a firewall between these networks, they connect via campus fiber. I created an any rule to rule that out. I am thinking the DNS server is corrupt, but I cannot figure it out. 
    Dcdiag /test:dns says everything is great.
    Any suggestions?

    Hi,
    According to your description, my understanding is that the problem DC is configured with conditional forwarders to resolve names about other 2 trusted forests, and always times out. Besides, there is a delay or a time out the first few times when attempting
    to resolve an external name.
    Use NSlookup to confirm that if the conditional forwarder works. Open CMD on problem DC, type the command below and each line end with enter:
    Nslookup
    Server <IP address of the condition forwarder which used to resolve names on trust domain>
    <name of the trust forest which you want to resolve>
    If it works, try to increase time-out period:
    Properties of Conditional Forwarders – Number of seconds before forward queries times out
    – change the time.
    If it doesn’t work, turn on exhaustive debugging mode. Open CMD on problem DC, type the command below and each line end with enter:
    Nslookup
    Set d2
    Server <IP address of the condition forwarder which used to resolve names on trust domain>
    <name of the trust forest which you want to resolve>
    Post the result here.
    Besides, for internet/external name resolving problem, we usually have another DNS server(except for DCs) which connected to Internet/external and used to resolve external/Internet names. And on DCs, configure forwarder and use forwarder to resolve external/Internet
    names. If it is your case, check the forwarder setting on the problem DC, or use ping to test the network connectivity. Confirm that if the delay of name resolving caused by network delay.
    Best Regards,
    Eve Wang
    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 Support, contact
    [email protected]

  • DNS request timed out. timeout was 2 seconds

    Hi
    Why it is saying DNS request timed out was 2 seconds and showing the IPs under non-authoritative answers?
    This is member DC windows 2008 R2. Primary DNS is set as 127.0.0.1 and secondary DNS is set to 192.168.10.6 which is main DC.
    C:\Users\admin>nslookup filter-servers.mailguard.com.au
    Server:  localhost
    Address:  127.0.0.1
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    Non-authoritative answer:
    Name:    filter-servers.mailguard.com.au
    Addresses:50.23.252.165
    199.193.116.73.. more

    HI
    Use ISP DNS servers and forward DNS query from internal DNS to ISP DNS servers,

  • Specs for 11500 Content Switches

    I am looking for more specs on the 11500 series content switches. Specs such as http connections per second, tcp connections total.

    Ted,
    The following link:
    http://www.cisco.com/en/US/products/hw/contnetw/ps792/prod_bulletin09186a008017dc5d.html
    states that "A Cisco CSS 11506 can now achieve more than 45,000 TCP connections per second and, if configured with 4 SSL modules, can attain over 4000 SSL transactions per second."
    Is that what you are looking for?
    Keep in mind that performance will be slower with layer 5 rules than strictly layet 4 rules.
    -Steve

  • Fireworks Menu Appearing Behind Content

    Hi All
    I have an existing website built in Macromedia Studio 8. I would like to upgrade to Web Premium CS5.5. As a result, I am currently using a trial version which has helped me to redesign the whole website. I am not proficient in code writing and have a basis understanding of the software. (That is why I am testing the trial version first). However, I an faced with TWO problems.
    The first is, although my templates were built using one of Adobe's page layout formats (then customised), some of the pages are no longer centred.
    The second is, I have created menu's in both Fireworks (Studio 8 then edited in Fireworks CS5.1 creative suite master collection and saved) and Spry (in Dreamweaver CS5.5) - which have now caused the menus to appear behind content on some of the pages.
    I have tried to use the pages which look fine in the browser as templates but, sadly, when the content is changed/added to, the menu appears behind again.
    I would appreciate any help.
    S
    P.S.I can't publish a link as I am using a trial version of the software at present.

    Thank you for your prompt reply Snake eyes,
    Please find the code below:
    <%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/advertising_privacy.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Viva Fashion.co.uk's Advertising Rates</title>
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    @import url("../menu_viva_fashion_site/viva_fashion_menu.css");
    @import url("../menu_useful_health_contacts/useful_health_and_beauty_contacts.css");
    body {
         margin: 0;/* center layout */
         padding: 0;
         color: #FFF;
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 100%;
         line-height: 1.4;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
         padding: 0;
         margin: 0;
    h1, h2, h3, h4, h5, h6, p {
         margin-top: 0;      /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
         padding-right: 15px;
         padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
         border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
         color: #999999;
         text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
         color: #FF0099;
         text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
         text-decoration: none;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
         width: 1100px;
         background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout */
         margin-top: 0;
         margin-right: auto;
         margin-bottom: 0;
         margin-left: auto;
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
         background: #FFF;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
         padding: 10px 0;
    /* ~~ The footer ~~ */
    .footer {
         padding: 10px 0;
         background: #CCC49F;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
         float: right;
         margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
         float: left;
         margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
         clear:both;
         height:0;
         font-size: 1px;
         line-height: 0px;
    #apDiv1 {
         position:absolute;
         left:1px;
         top:2px;
         width:744px;
         height:80px;
         z-index:1;
    #apDiv2 {
         position:absolute;
         left:4px;
         top:85px;
         width:1100px;
         height:25px;
         z-index:2;
         background-color: #CCCCCC;
    #apDiv3 {
         position:absolute;
         left:1px;
         top:120px;
         width:670px;
         height:800px;
         z-index:3;
    #apDiv4 {
         position:absolute;
         left:2px;
         top:910px;
         width:670px;
         height:500px;
         z-index:4;
    #apDiv5 {
         position:absolute;
         left:670px;
         top:120px;
         width:130px;
         height:1300px;
         z-index:5;
    #apDiv6 {
         position:absolute;
         left:804px;
         top:120px;
         width:300px;
         height:1300px;
         z-index:6;
         background-color: #000000;
    -->
    </style>
    <link href="Vivavocefashion.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    .style1 {color: #666666}
    #apDiv7 {
         position:absolute;
         left:2px;
         top:1430px;
         width:1100px;
         height:60px;
         z-index:7;
         background-color: #000000;
    .style10 {font-weight: bold}
    .style12 {font-weight: bold}
    .style14 {font-weight: bold}
    .style16 {font-weight: bold}
    .style2 {font-weight: bold}
    .style4 {font-weight: bold}
    .style6 {font-weight: bold}
    .style8 {font-weight: bold}
    #apDiv8 {
         position:absolute;
         left:4px;
         top:85px;
         width:1100px;
         height:25px;
         z-index:8;
    #apDiv9 {
         position:absolute;
         left:11px;
         top:10px;
         width:174px;
         height:44px;
         z-index:9;
    #apDiv10 {
         position:absolute;
         left:6px;
         top:4px;
         width:172px;
         height:60px;
         z-index:9;
    #apDiv11 {     position:absolute;
         left:-7px;
         top:27px;
         width:1100px;
         height:20px;
         z-index:1;
    </style>
    <script language="JavaScript1.2" type="text/javascript" src="../menu_viva_fashion_site/mm_css_menu.js"></script>
    </head>
    <div id="apDiv1">
      <table width="1099" border="0">
        <tr>
          <td width="327"><a href="../index.html"><img src="../graphics/viva_fashion_logo.gif" width="322" height="78" alt="viva fashion.co.uk logo" longdesc="http://www.vivafashion.co.uk" /></a></td>
          <td width="762"><span class="Headerpink">
          <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="600" height="65">
        <param name="movie" value="../animations/top_banner_advert.swf" />
        <param name="quality" value="high" />
        <embed src="../animations/top_banner_advert.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="600" height="65"> </embed>
      </object>
    </span>
            </td>
        </tr>
      </table>
    </div>
    <body>
    <div id="apDiv7">
      <div align="left"><span class="Bodytextwhite"><a href="advertising.html" class="Bodytextwhite">Advertising</a> | <a href="privacy-policy.html" class="Bodytextwhite">Privacy Policy</a> | <a href="site-map.html" class="Bodytextwhite">Site Map</a> | <a href="subscribe.html" class="Bodytextwhite">Subscription Service &amp; Feedback</a> | <a href="user-agreement.html" class="Bodytextwhite">Useragreement</a></span><span class="Bodytextpink"><span class="Bodytextwhite"> <br />
        Contact us at <a href="mailto:[email protected]">[email protected]</a> <br />
        <a href="http://www.VivaFashion.co.uk" target="_blank">http://www.VivaFashion.co.uk</a> A Fashion Shopping and Retail News Website &copy; 2000-2011. All rights reserved.</span></span>  </div>
    </div>
    <div id="apDiv2">
      <div id="FWTableContainer1630063442">
        <div align="left"><img name="viva_fashion_menu" src="../menu_viva_fashion_site/viva_fashion_menu.jpg" width="1100" height="20" border="0" id="viva_fashion_menu" usemap="#m_viva_fashion_menu" alt="" />
          <map name="m_viva_fashion_menu" id="m_viva_fashion_menu">
            <area shape="rect" coords="1,0,55,20" href="http://www.vivafashion.co.uk/index.html" target="None" alt="" />
            <area shape="rect" coords="766,0,857,25" href="javascript:;" alt="" onmouseout="MM_menuStartTimeout(1000);"  onmouseover="MM_menuShowMenu('MMMenuContainer0314125112_0', 'MMMenu0314125112_0',766,25,'viva_fashion_menu');"  />
            <area shape="rect" coords="640,0,714,19" href="javascript:;" alt="" onmouseout="MM_menuStartTimeout(1000);"  onmouseover="MM_menuShowMenu('MMMenuContainer0314125112_1', 'MMMenu0314125112_1',640,19,'viva_fashion_menu');"  />
            <area shape="rect" coords="482,0,584,19" href="javascript:;" alt="" onmouseout="MM_menuStartTimeout(1000);"  onmouseover="MM_menuShowMenu('MMMenuContainer0314125112_2', 'MMMenu0314125112_2',482,19,'viva_fashion_menu');"  />
            <area shape="rect" coords="322,0,425,19" href="javascript:;" alt="" onmouseout="MM_menuStartTimeout(1000);"  onmouseover="MM_menuShowMenu('MMMenuContainer0314125112_3', 'MMMenu0314125112_3',322,19,'viva_fashion_menu');"  />
            <area shape="rect" coords="193,0,275,19" href="javascript:;" alt="" onmouseout="MM_menuStartTimeout(1000);"  onmouseover="MM_menuShowMenu('MMMenuContainer0314125112_4', 'MMMenu0314125112_4',193,19,'viva_fashion_menu');"  />
            <area shape="rect" coords="92,0,157,25" href="javascript:;" alt="" onmouseout="MM_menuStartTimeout(1000);"  onmouseover="MM_menuShowMenu('MMMenuContainer0314125112_5', 'MMMenu0314125112_5',92,25,'viva_fashion_menu');"  />
          </map>
        </div>
        <div id="MMMenuContainer0314125112_0">
          <div id="MMMenu0314125112_0" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
            <div align="left"><a href="fashion-shopping.html" id="MMMenu0314125112_0_Item_0" class="MMMIFVStyleMMMenu0314125112_0" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_0');"> Editor's Shopping List </a> <a href="fashion-contacts-discount.html" id="MMMenu0314125112_0_Item_1" class="MMMIVStyleMMMenu0314125112_0" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_0');"> Discount Shopping Links </a> <a href="fashion-contacts-discount-village.html" id="MMMenu0314125112_0_Item_2" class="MMMIVStyleMMMenu0314125112_0" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_0');"> Discount Village Links </a> <a href="shopping-online-index.html" id="MMMenu0314125112_0_Item_3" class="MMMIVStyleMMMenu0314125112_0" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_0');"> Shopping Links </a> <a href="high-index.html" id="MMMenu0314125112_0_Item_4" class="MMMIVStyleMMMenu0314125112_0" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_0');"> Stockists  </a> <a href="fashion-contacts-vintage.html" id="MMMenu0314125112_0_Item_5" class="MMMIVStyleMMMenu0314125112_0" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_0');"> Vintage Links </a>        </div>
          </div>
        </div>
        <div id="MMMenuContainer0314125112_1">
          <div id="MMMenu0314125112_1" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
            <div align="left"><a href="book-reviews.html" id="MMMenu0314125112_1_Item_0" class="MMMIFVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> Book Reviews </a> <a href="dates-for-your-diary.html" id="MMMenu0314125112_1_Item_1" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> Diary Dates </a> <a href="consumer-lifestyle-show.html" id="MMMenu0314125112_1_Item_2" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> Fashion Lifestyle Shows </a> <a href="fashion-news.html" id="MMMenu0314125112_1_Item_3" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> Fashion News </a> <a href="fashion-news-designers.html" id="MMMenu0314125112_1_Item_4" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> New Designer Launches </a> <a href="fashion-news-websites.html" id="MMMenu0314125112_1_Item_5" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> New Websites </a> <a href="fashion-news-products.html" id="MMMenu0314125112_1_Item_6" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> Product Launches </a> <a href="fashion-spotlight.html" id="MMMenu0314125112_1_Item_7" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> Spotlight on Luxury Labels </a> <a href="fashion-trends.html" id="MMMenu0314125112_1_Item_8" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> Trends </a> <a href="fashion-news-stores.html" id="MMMenu0314125112_1_Item_9" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> Store Openings </a> <a href="fashion-street-looks.html" id="MMMenu0314125112_1_Item_10" class="MMMIVStyleMMMenu0314125112_1" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_1');"> Street Style </a>        </div>
          </div>
        </div>
        <div id="MMMenuContainer0314125112_2">
          <div id="MMMenu0314125112_2" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
            <div align="left"><a href="advertising.html" id="MMMenu0314125112_2_Item_0" class="MMMIFVStyleMMMenu0314125112_2" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_2');"> Advertising Rates </a> <a href="retail-classifieds.html" id="MMMenu0314125112_2_Item_1" class="MMMIVStyleMMMenu0314125112_2" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_2');"> Retail Classifieds </a> <a href="retail-jobs.html" id="MMMenu0314125112_2_Item_2" class="MMMIVStyleMMMenu0314125112_2" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_2');"> Retail Jobs </a>        </div>
          </div>
        </div>
        <div id="MMMenuContainer0314125112_3">
          <div id="MMMenu0314125112_3" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
            <div align="left"><a href="celebrity-oscars.html" id="MMMenu0314125112_3_Item_0" class="MMMIFVStyleMMMenu0314125112_3" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_3');"> Awards Show Fashion </a> <a href="beauty-celebrity.html" id="MMMenu0314125112_3_Item_1" class="MMMIVStyleMMMenu0314125112_3" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_3');"> Celebrity Beauty </a> <a href="celebrity-news-gossip.html" id="MMMenu0314125112_3_Item_2" class="MMMIVStyleMMMenu0314125112_3" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_3');"> Celebrity News </a> <a href="celebrity-parties.html" id="MMMenu0314125112_3_Item_3" class="MMMIVStyleMMMenu0314125112_3" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_3');"> Celebrity Parties </a> <a href="celebrity-focus.html" id="MMMenu0314125112_3_Item_4" class="MMMIVStyleMMMenu0314125112_3" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_3');"> Celebrity Profile </a> <a href="model-profile.html" id="MMMenu0314125112_3_Item_5" class="MMMIVStyleMMMenu0314125112_3" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_3');"> Model Profile </a>        </div>
          </div>
        </div>
        <div id="MMMenuContainer0314125112_4">
          <div id="MMMenu0314125112_4" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
            <div align="left"><a href="graduate-fashion-week.html" id="MMMenu0314125112_4_Item_0" class="MMMIFVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Emerging Talent </a> <a href="retail-trends.html" id="MMMenu0314125112_4_Item_1" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Fashion Week Reports </a> <a href="retail-exhibitions.html" id="MMMenu0314125112_4_Item_2" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Important Dates </a> <a href="model-index.html" id="MMMenu0314125112_4_Item_3" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Model Agency Index </a> <a href="photographers-index.html" id="MMMenu0314125112_4_Item_4" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Photographers  Index </a> <a href="retail-appointments.html" id="MMMenu0314125112_4_Item_5" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Retail Appointments </a> <a href="retail-feature.html" id="MMMenu0314125112_4_Item_6" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Retail Features </a> <a href="retail-news.html" id="MMMenu0314125112_4_Item_7" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Retail News </a> <a href="retail-shares.html" id="MMMenu0314125112_4_Item_8" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Retail Share Prices </a> <a href="retail-wholesalers.html" id="MMMenu0314125112_4_Item_9" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Retail Wholesalers Index </a> <a href="retail-trade-show.html" id="MMMenu0314125112_4_Item_10" class="MMMIVStyleMMMenu0314125112_4" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_4');"> Trade Show Reviews </a>        </div>
          </div>
        </div>
        <div id="MMMenuContainer0314125112_5">
          <div id="MMMenu0314125112_5" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
            <div align="left"><a href="beauty-bargains.html" id="MMMenu0314125112_5_Item_0" class="MMMIFVStyleMMMenu0314125112_5" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_5');"> Budget Buys </a> <a href="beauty-news.html" id="MMMenu0314125112_5_Item_1" class="MMMIVStyleMMMenu0314125112_5" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_5');"> Beauty News </a> <a href="book-reviews.html" id="MMMenu0314125112_5_Item_2" class="MMMIVStyleMMMenu0314125112_5" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_5');"> Book Reviews </a> <a href="beauty-feature.html" id="MMMenu0314125112_5_Item_3" class="MMMIVStyleMMMenu0314125112_5" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_5');"> Beauty Features </a> <a href="health-beauty-features.html" id="MMMenu0314125112_5_Item_4" class="MMMIVStyleMMMenu0314125112_5" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_5');"> Health Features </a> <a href="beauty-trends.html" id="MMMenu0314125112_5_Item_5" class="MMMIVStyleMMMenu0314125112_5" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_5');"> New Season Looks </a> <a href="beauty-contacts.html" id="MMMenu0314125112_5_Item_6" class="MMMIVStyleMMMenu0314125112_5" onmouseover="MM_menuOverMenuItem('MMMenu0314125112_5');"> Stockists / Book an Appointment </a>        </div>
          </div>
        </div>
      </div>
    </div>
    <div align="left"><!-- InstanceBeginEditable name="mainbodycontent" -->
    <div id="apDiv3" style="overflow: auto; height: 1300px; width: 670px;background-color: #FFF;">
      <p><span class="Bodytext"><span class="Header"><b>HOW CAN WE HELP YOU?</b></span><br />
        Consumers can't wait to get there hands on the latest must-have item or information on what the new season has to offer. Team information like that with business and celebrity gossip and what do you get? A heady mix that accommodates the tastes of a sizable share of the fashion and beauty market. </span></p>
      <p class="Bodytext">With technology advancing at a galloping pace that has ensured Internet users exposure to information and convenience shopping facilities in an instant, more and more companies are realising the importance of getting their brand noticed through this medium than waiting on the production cycles of others.</p>
      <p><span class="Bodytext">Time waits for no man. Neither does fashion. See below for advertising rates or contact us directly for collaborative advertising campaigns. </span></p>
      <p><b class="Header">WHAT'S AVAILABLE/ADVERT SPECIFICATION</b></p>
      <table width="500" border="1" align="center">
        <tr>
          <td width="250" bgcolor="#CCCCCC" class="Header"><div align="center"><strong>Banners</strong></div></td>
          <td width="250" align="left" valign="top" bgcolor="#CCCCCC"><div align="center" class="Header"><strong>Tiles</strong></div></td>
        </tr>
        <tr>
          <td width="250"><b><span class="Blackttext12">(Top Only) Dimensions:</span></b><span class="Blackttext12"> 468 x 60 pixels</span></td>
          <td width="250" align="left" valign="top"><span class="Blackttext12"><b>Dimensions:</b> 120 x 90 pixels</span></td>
        </tr>
        <tr>
          <td width="250"><span class="Blackttext12"><b>Formats:</b> gif, gif89, jpeg, Flash, HTML</span></td>
          <td width="250" align="left" valign="top"><span class="Blackttext12"><b>Formats:</b> gif or jpg (non-animated, roll-over)</span></td>
        </tr>
        <tr>
          <td width="250" valign="top"><p align="left"><span class="Blackttext12"><b>File size:</b> 20K max</span><br />
          </p></td>
          <td width="250" align="left" valign="top"><div align="left"><span class="Blackttext12"><b>File size:</b> 5K max</span><br />
          </div></td>
        </tr>
        <tr>
          <td width="250" bgcolor="#CCCCCC" class="Header"><div align="center"><strong>side bar adverts &amp; box adverts </strong></div></td>
          <td width="250" align="left" bgcolor="#CCCCCC"><div align="center" class="Header"><strong>pop-ups</strong></div></td>
        </tr>
        <tr>
          <td width="250"><b><span class="Blackttext12">Dimensions:</span></b><span class="Blackttext12"> 120 x 310 pixels or </span></td>
          <td width="250" align="left"><span class="Blackttext12"><b>Dimensions:</b> 250 x 250 pixels</span></td>
        </tr>
        <tr>
          <td width="250"><span class="Blackttext12"><b>Dimensions:</b> 120 x 240 pixels or</span></td>
          <td width="250" align="left"><span class="Blackttext12"><b>Formats:</b> Javascript displayed on a HTML page for five seconds before closing</span></td>
        </tr>
        <tr>
          <td width="250"><span class="Blackttext12"><b>Dimensions:</b> 125 x 125 pixels</span></td>
          <td width="250" align="left"><span class="Blackttext12"><b>File size:</b> 20K Max</span></td>
        </tr>
        <tr>
          <td width="250"><span class="Blackttext12"><b>Formats:</b> gif, gif89, jpeg, Flash, HTML</span></td>
          <td width="250" align="left"> </td>
        </tr>
        <tr>
          <td width="250"><p align="left"><span class="Blackttext12"><b>File size:</b> 20K max</span></p></td>
          <td width="250" align="left"><p align="left"><span class="Blackttext12"><br />
            <br />
          </span></p></td>
        </tr>
      </table>
      <br />
      <p><b class="Header">LEAD TIMES</b><br />
        <br />
        <span class="Bodytext">Production deadlines do not include time needed for revisions made either by agency or the advertisers in-house design department. Publication of adverts depends solely on the type of advertisement or campaign the advertiser runs with us and the time at which the advertisement is received. Advertisements received after the production deadline is not guaranteed for inclusion.</span><br />
      </p>
      <table width="500" border="1" align="center">
        <tr>
          <td width="250" align="left" bgcolor="#CCCCCC"><div align="left"><b class="Blackttext12">ADVERTISEMENT FORMAT</b></div></td>
          <td width="250" bgcolor="#CCCCCC"><b class="Blackttext12">PRODUCTION DEADLINE</b></td>
        </tr>
        <tr>
          <td width="250" align="left" class="Blackttext12"><div align="left">E-Mail Text Links (copy and url t.b.supplied)</div></td>
          <td width="250" class="Blackttext12">-</td>
        </tr>
        <tr>
          <td width="250" align="left" class="Blackttext12"><div align="left">Gif/Animated Gif</div></td>
          <td width="250" class="Blackttext12">4 Business Days</td>
        </tr>
        <tr>
          <td width="250" align="left" class="Blackttext12"><div align="left">HTML</div></td>
          <td width="250" class="Blackttext12">4 Business Days</td>
        </tr>
        <tr>
          <td width="250" align="left" class="Blackttext12"><div align="left">Javascript</div></td>
          <td width="250" class="Blackttext12">-</td>
        </tr>
        <tr>
          <td width="250" align="left" class="Blackttext12"><div align="left">Keyword Campaigns</div></td>
          <td width="250" class="Blackttext12">-</td>
        </tr>
        <tr>
          <td width="250" align="left" class="Blackttext12"><div align="left">Sidebar</div></td>
          <td width="250" class="Blackttext12">4 Business Days</td>
        </tr>
      </table>
      <br />
      <p><b><span class="Header">PRICING</span></b></p>
      <table width="500" border="1" align="center">
        <tr bgcolor="#CCCCCC">
          <td class="Blackttext12"><b>Cost per quarterly period</b></td>
          <td class="Blackttext12"><div align="center"><b>4 weeks</b></div></td>
          <td class="Blackttext12"><div align="center"><b>12 weeks</b></div></td>
          <td class="Blackttext12"><div align="center"><b>26 weeks</b></div></td>
          <td class="Blackttext12"><div align="center"><b>52 weeks</b></div></td>
        </tr>
        <tr>
          <td colspan="5" class="Blackttext12"><div align="left"><b>Tile Adverts - For 24hour Advertising Presence</b></div></td>
        </tr>
        <tr>
          <td class="Blackttext12">Pounds Sterling</td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
        </tr>
        <tr>
          <td colspan="5" class="Blackttext12"><div align="left"><b>Banner and Side Bar Adverts (Discount another &pound;200 for Side Bar/Box Adverts)</b></div></td>
        </tr>
        <tr>
          <td class="Blackttext12">Pounds Sterling</td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
        </tr>
        <tr>
          <td colspan="5" class="Blackttext12"><div align="left"><b>Pop-Up Box</b></div></td>
        </tr>
        <tr>
          <td class="Blackttext12">Pound Sterling</td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
          <td class="Blackttext12"><div align="center"><a href="mailto:[email protected]">Contact Us</a></div></td>
        </tr>
      </table>
      <p><span class="Blackttext12">For Euros and dollars please use the following link to convert:</span> <span class="Bodytext"><a href="http://www.xe.com">http://www.xe.com</a>.</span></p>
      <p><span class="Header"><b>GENERAL REQUIREMENTS</b></span></p>
      <ul>
        <li>
          <p class="Bodytext">Images<br />
            All images must have alternate (descriptive and concise) text to be used in the absence of images.<br />
            <br />
          </p>
        </li>
        <li>
          <p class="Bodytext">Optimisation Guidelines<br />
            Images must be optimised to the lowest-possible bit depth.<br />
            <br />
          </p>
        </li>
        <li class="Bodytext">
          <p>It is recommended that fewer colours are used for advertisements. Visit browser safe colour palette sites for more guidelines.<br />
          </p>
        </li>
      </ul>
      <p><span class="Header"><strong>Testing</strong><span class="Bodytext"><br />
        <br />
        VIVAFASHION.CO.UK </span></span><span class="Bodytext">will not be held responsible for the testing of advertisements. All advertisements, must be tested prior to delivery for compatibility on the following browsers and platforms:<br />
          -Netscape 3.x and 4x for Windows 3.1 and Macintosh OS 8x<br />
          -Microsoft Internet Explorer for Windows 3.1 and Macintosh OS 8x<br />
          - AOL 3.x for Windows 3.1 and Macintosh OS 8x</span></p>
      <p><br />
        <b class="Header">GENERAL INFORMATION</b></p>
      <ul>
        <li>
          <p class="Bodytext">Approval<br />
            VIVAFASHION.CO.UK has final approval for all ads with respect to editorial/creative content. We reserve the right to remove an advertisement from this website at any time for any reason.<br />
            <br />
          </p>
        </li>
        <li class="Bodytext">
          <p>Specifications <br />
            All specifications apply to all ads, whether hosted by VIVAFASHION.CO.UK or by a third party. <br />
            Please note that all rates and conditions are quoted in pounds sterling and are subject to change without notice.VIVAFASHION.CO.UK reserve the right to refuse or cancel any order without cause, at any time. </p>
        </li>
      </ul>
      <p class="Bodytext">For more information with regards to rates, special advertising packages/campaigns and specifications please contact us at:<a href="mailto:[email protected]" class="Bodytext"> <br />
      Sales at Viva  Fashion.co.uk</a>. </p>
    </div>
    <!-- InstanceEndEditable -->
    </div>
    <div id="apDiv5"></div>
    <div id="apDiv6">
      <p align="left"><font face="Arial, Helvetica, sans-serif"><br />
      </font></p>
      <p align="left"> </p>
      <p align="left"> </p>
      <p align="left"> </p>
      <p align="left"> </p>
      <p align="left"> </p>
      <p align="left"> </p>
      <p align="left"> </p>
    </div>
    </body>
    <!-- InstanceEnd --></html>

  • Tabs and content switcher

    We're using a lower version of adf (10g) and using uix. Anybody here who has a sample of using tabs with content switcher.
    Basically I want to have 2 fixed tabs and when I click a tab, the content is shown in the same page. The content of the
    page basically consists of just read-only VO table..
    Appreciate any help.
    Thanks!

    Hi SarahShay,
    You could use JavaScript client object model to retrieve blog posts. You could use the getItemById(id) function to return a single item, or use the getItems(query) function to return multiple items.
    An official documentation:
    https://msdn.microsoft.com/en-us/library/office/hh185007(v=office.14).aspx
    A similar post:
    http://blogs.msdn.com/b/sharepointdev/archive/2011/07/19/working-with-the-ecmascript-client-object-model-jsom-in-sharepoint-2010-part-3-nikhil-sachdeva.aspx
    Best Regards,
    Dean Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Defining DNS on a 3550 switch

    I have three 3550 switches and want to define a DNS server on one of my switches (172.16.2.10). I have done the following in the DNS switch:
    3550(config)#ip domain-lookup
    3550(config)#ip host Setad 172.16.8.2
    3550(config)#ip host MAVAD 172.16.5.2
    3550(config)#ip domain-name cressnet.com
    I have done the following on the 172.16.5.2 (MAVAD) switch (one that is not a DNS):
    3550(config)#ip domain-lookup
    3550(config)#ip name-server 172.16.2.10
    3550(config)#ip domain-name cressnet.com
    In normal operation I can telnet from 172.16.5.2 to 172.16.8.2; but in this situation, when I issue the "Setad" to telnet Setad (172.16.8.2) from the 172.16.5.2, nothing happens.
    Please help!
    Thanks.

    Thanks for your reply.
    My DNS server switch hostname is "MUT-FIBER-SWITCH" and its IP address is 172.16.2.10. Look at the DNS configuration in this switch:
    MUT-FIBER-SWITCH#sh hosts
    Default domain is not set
    Name/address lookup uses domain service
    Name servers are 255.255.255.255
    Host Port Flags Age Type Address(es)
    Setad None (perm, OK) 44 IP 172.16.8.2
    MAVAD None (perm, OK) 0 IP 172.16.5.2
    I have set the following configuration in the MAVAD switch:
    MAVAD(config)#ip domain-lookup
    MAVAD(config)#ip name-server 172.16.2.10
    and
    MAVAD:#ping 172.16.2.10
    Type escape sequence to abort.
    Sending 5, 100-byte ICMP Echos to 172.16.2.10, timeout is 2 seconds:
    Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
    and
    MAVAD:#ping 172.16.8.2
    Type escape sequence to abort.
    Sending 5, 100-byte ICMP Echos to 172.16.8.2, timeout is 2 seconds:
    Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms
    and
    MAVAD:#telnet 172.16.8.2
    Trying 172.16.8.2 ... Open
    Welcome To Master Switch In SETAD
    Username: Malek
    Password:
    SETAD>exit
    but
    MAVAD:#Setad
    Translating "Setad"...domain server (172.16.2.10)
    % Unknown command or computer name, or unable to find computer address
    and
    MAVAD:#ping setad
    Translating "setad"...domain server (172.16.2.10)
    % Unrecognized host or address, or protocol not running.

Maybe you are looking for