Moonbeam - Reaching beyond the stars! 
Moonbeam! Relax and enjoy, music for the soul. These Russian guys really make me think outside the box, the best. You should really check them out.

http://www.youtube.com/watch?v=tk1VKcsfbYM

Albums:
Around the world
Consumption
Storm of Clouds (Sky !)

...and podcasts.

[ view entry ] ( 1698 views )   |  print article
Binary, Octal & Hexadecimal to Decimal Conversion (Manual Process) 
I wrote this tutorial to demonstrate how to manually convert from binary,octal or hexadecimal to decimal.

http://www.angelcool.net/tutorials/misc ... ecimal.pdf

[ view entry ] ( 1996 views )   |  print article
Web Development Network Setup with NVI 
The goal of the tutorial is to allow NATed and Internet hosts to use a public IP to access the NATed development server, fixing DNS issues.

Click the link to see tutorial.
http://www.angelcool.net/tutorials/cisc ... rk_NVI.pdf

[ view entry ] ( 1438 views )   |  print article
Multiple NAT translations with NVI (NAT Virtual Interface) 
NVI removes the inside & outside terminology. With NVI multiple interfaces can participate in the translation. Before you cannot have translation with two INSIDE interfaces, NVI fixes that. http://www.cisco.com/en/US/docs/ios/12_ ... natvi.html



Basic configuration(no VRF enable):

int fa 0
  ip nat enable
int fa 1
  ip nat enable
int serial 0
  ip nat enable

ip nat source list 50 interface serial 0 overload //translate fa 0 & fa 1 lans out serial 0
ip nat source list 125 interface fa 0 overload //translate fa 1's lan out fa 0
ip nat source static tcp 172.168.50.10 80 interface serial 0 80 //translate web server out serial 0


[ view entry ] ( 1882 views )   |  print article
Router IOS Firewall: Allow only internal hosts to initiate a TCP session. 
InternalHosts<--e1(Router)e0-->RemoteNetworks

access-list 100 permit tcp any any gt 1023 established

interface e0
ip access-group 100 in


"UDP packets don't establish a connection, they're literally fire and forget! A simple permit udp host xx.xx.xx.xx host xx.xx.xx.xx eq xx should be all that's required."

-------------------------------------------------------------
See Cisco document id 26448


Also see:

Reflexive ACLs
ip inspect command.



[ view entry ] ( 1552 views )   |  print article
T1 Crossover Connection 
Connecting two routers back to back using their T1-DSU/CSU ports.

Cards and pin layout:







[ view entry ] ( 1586 views )   |  print article
About my blog. 
Welcome to my blog.

I needed a place to put all helpful little things, to be available at all times; specially when I have something in my mind and know I know it, so I created this blog ...to share. I added a tutorial section, it helps me remember how to do things (if I start updating it,jk).

Enjoy!. Angel


[ view entry ] ( 45083 views )   |  print article
JavaScript OR when assigning value to variable 
<script type="text/javascript">

x=false || 'test';
alert(x);//outputs 'test';

</script>



[ view entry ] ( 1451 views )   |  print article
Amazon Wishlists 
If you found something helpful in this site and want to return the favor,

http://www.amazon.com/gp/registry/wishl ... av_lists_1

but if you really love me...

http://www.amazon.com/registry/wishlist ... _go_o_T1-2

;)



[ view entry ] ( 1860 views )   |  print article
GET & POST in PHP and ASP.NET 
PHP
$_GET
$_POST

ASP.NET
Request.QueryString
Request.Form





[ view entry ] ( 1390 views )   |  print article

<<First <Back | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | Next> Last>>


2024 By Angel Cool