Tuesday, July 31, 2012

Direction on the access-lists on the VLAN interfaces


An access-list applied outbound to a vlan interface filters traffic going TO machines on that vlan.

An access-list applied inbound to a vlan filters traffic coming FROM machines on that vlan.

Thursday, May 3, 2012

How to save Cisco routers' crypto keys in GNS3

One annoying thing in GNS3 is that sometimes after you configured SSH in your routers it stops working after reload. The problem is the key isn't stored in NVRAM, so after reboot, I have to regenerate them every time.
 There is a workaround of this problem - open .net file of the GNS3 project and delete
"cnfg="
lines from the routers configuration. It should solve the problem permanently.
Happy routing :)

Thursday, December 1, 2011

Firefox 8 in Ubuntu 10.10


http://news.softpedia.com/news/How-to-Install-Firefox-8-in-Ubuntu-10-04-and-10-10-232859.shtml

P.S. There is also very interesting add-on for the Firefox, that helps to solve the problems with incorrect flash player installations. It's called "Flash-aid".

Wednesday, September 21, 2011

Tuning Vmware Workstation 8 performance

In effort to squeeze a little bit more performance from my vSphere 5 whitebox, I tried to tune some settings of my VMware Workstation 8. Recently, I've found disk activity concerning .vmem files (From vmware.com: vmem is the virtual machine's paging file, which backs up the guest main memory on the host file system. This file exists only when the virtual machine is running, or if the virtual machine has crashed.). I don't think that I do need this files because I don't want suspend my virtual machines etc. I need pure performance, so I decided to tweak some Workstation settings. First of all find "config.ini" (In my Windows 7 it's located in "C:\ProgramData\VMware\VMware Workstation") and add/modify the following parameters:

mainMem.useNamedFile = "no"  - tells not to use .vmem files

prefvmx.minVmMemPct = "100"  - fit all virtual machine memory into reserved host RAM. Swapping won't be occurring so the host machine must have enough memory to accommodate  the sum of all memory reserved for every single virtual machine.


prefvmx.allVMMemoryLimit = "15000" - this parameter tells how much host memory can be used for the virtual machine memory allocation.

prefvmx.useRecommendedLockedMemSize = "yes" - well, to be honest I don't really need what this parameter do, but I've seen suggestion to enable it :)