пятница, 10 апреля 2015 г.

Запуск windows 10 (8.1) на VMWare 4.1

В конфигурацию машины, XYZ.vmx, добавить строки:

bios440.filename = "/full_path_to/bios.440.rom"
mce.enable = "TRUE"
cpuid.hypervisor.v0 = "FALSE"
vmGenCounter.enable = "FALSE
"

bios.440.rom

PS
В результате возникают проблемы с хот кеями, нужно заранее в bios выставить правильный порядок загрузки.

PSS

Официально unsupported, минимальная версия 5.0 + патчи под 8-ку.

PSSS
Работает не шибко стабильно.

 PSSSS
"совсем охуельи блядьи" (с)


четверг, 9 апреля 2015 г.

Troubleshoot Connections through the PIX and ASA

http://www.cisco.com/c/en/us/support/docs/security/asa-5500-x-series-next-generation-firewalls/71871-asa-pix-troubleshooting.html#s1


  • ASA Capture Feature
    The administrator needs to create an access-list that defines what traffic the ASA needs to capture. After the access-list is defined, the capture command incorporates the access-list and applies it to an interface.
    ciscoasa(config)#access-list inside_test permit icmp any host 192.168.1.1
    ciscoasa(config)#capture inside_interface access-list inside_test interface inside
    
    The user pings the inside interface of the ASA (ping 192.168.1.1). This output is displayed.
    ciscoasa#show capture inside_interface
       1: 13:04:06.284897 192.168.1.50 > 192.168.1.1: icmp: echo request
    
    !--- The user IP address is 192.168.1.50.
    
    
    Note: In order to download the capture file to a system such as ethereal, you can do it as this output shows.
    
    !--- Open an Internet Explorer and browse with this https link format:
    
    https://[/]/capture//pcap
    
    Refer to ASA/PIX: Packet Capturing using CLI and ASDM Configuration Example in order to know more about Packet Capturing in ASA.