A friend of mine runs a well established blogging site at www.d0tk0m.com. He has been experiencing some problems with some of the CSS on his site.
I decided to take a look to see if this could be rectified. There were two initial complaints;
When viewing the site in IE8 there was a huge scrollbar on the horizontal axis.
When using IE8 there were problems with the Syntax Highlighter (the view source button and print buttons etc are all over the place)
After downloading the site I took a look at the main background CSS style sheet located here:
/wp-content/themes/pianoblack/style.css
I then started troubleshooting by commenting out various CSS until I found one that did the trick. I also found that it made no noticable style changes to the site:
code snippet
Hey presto, the issue was fixed.
I have not looked into the issue with the syntax hi-lighter, but may have found the issue. Will keep updating this post with the findings. In the CSS for this issue, there are some author comments to show compatibility for IE8 / 7:
For the Cisco 2600 series, this requires 128Mb DRAM and I would reccomend the 12.4 IOS also
To begin with, you will need to set up Active Directory to accept password reversed encryption for the password policy.
You must also have IAS configured correctly and registered with AD.
!
service timestamps debug datetime msec
service timestamps log datetime msec
!
hostname yourroutername
!
enable secret 5 [encryption hashed password shown here]
!
aaa new-model
!
aaa authentication login default local enable
aaa authentication ppp default group radius local
aaa authorization network default group radius if-authenticated
!
aaa session-id common
!
resource policy
!
memory-size iomem 15
ip cef
!
ip domain name blah.com
ip ssh authentication-retries 2
ip ssh version 2
vpdn enable
!
vpdn-group VPN
! Default L2TP VPDN group
accept-dialin
protocol l2tp
virtual-template 1
no l2tp tunnel authentication
l2tp tunnel receive-window 256
!
username testuser password 0 testpassword
!
crypto isakmp policy 10
encr 3des
authentication pre-share
group 2
crypto isakmp key PutYourPreSharedKeyHere address 0.0.0.0 0.0.0.0
!
crypto ipsec transform-set transport esp-3des esp-md5-hmac
mode transport
!
crypto dynamic-map cc 10
set nat demux
set transform-set transport
!
crypto map cisco 10 ipsec-isakmp dynamic cc
!
interface FastEthernet0/0 or ATM0/0 dependant on whether you use a WIC
description External Network
ip address 11.22.33.44 255.255.255.0
ip access-group 100 in
ip nat outside
ip virtual-reassembly
no ip mroute-cache
duplex auto
speed auto
no cdp enable
crypto map cisco
!
interface FastEthernet0/1
description Internal Network
ip address 192.168.1.1 255.255.255.0
ip nat inside
ip virtual-reassembly
no ip mroute-cache
speed auto
full-duplex
no cdp enable
no mop enabled
!
interface Virtual-Template1
ip unnumbered Loopback0
ip virtual-reassembly
peer default ip address pool VPN
ppp encrypt mppe 128
ppp authentication ms-chap-v2
!
ip local pool vpn_pool 192.168.1.200 192.168.100.250
ip route 0.0.0.0 0.0.0.0 FastEthernet0/0
!
no ip http server
no ip http secure-server
ip nat translation timeout 30
ip nat inside source list 1 interface FastEthernet0/0 overload
!
access-list 1 remark Permit NAT traffic from 192.168.1.0/24
access-list 1 permit 192.168.1.0 0.0.0.255
access-list 2 remark Permit SSH traffic for 192.168.1.0/24 and deny everything else
access-list 2 permit 192.168.1.0 0.0.0.255
access-list 2 deny any
access-list 100 remark Disallow telnet and ssh access from outside
access-list 100 deny tcp any any eq telnet
access-list 100 deny tcp any any eq 22
access-list 100 permit ip any any
!
radius-server host [ip of radius server here] auth-port 1645 acct-port 1646 key HashedKey
!
control-plane
!
line con 0
line aux 0
line vty 0 4
access-class 2 in
password generlc
transport input ssh
transport output ssh
!
end
Here is a video that I found to give an example of setting up the client teleworker side without having to use the CISCO VPN Client software