Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Post
  • Reply
hooah
Feb 6, 2006
WTF?
I understand binary and which bits are host bits and which network, but figuring out what the subnets are in half of the class B cases is where I get stuck.

Adbot
ADBOT LOVES YOU

Sylink
Apr 17, 2004

Once you understand the binary portion of subnetting its pretty easy.

/18 derp derp

11111111.11111111.11000000.00000000

Oh look 18 1s!

OR

255.255.192.0

EDIT:

So block size is 64, so first subnet , say with 10.10.0.0 is -

10.10.0.0 -> 10.10.63.255 is the first ip range .

And the # of subnets it the masked bit count so 2**2 == 4.

Handy link: http://www.warriorsofthe.net/cgi-bin/subnets.pl?network=10.10.0.0&bits=18

Sylink fucked around with this message at 08:29 on Jan 26, 2013

doomisland
Oct 5, 2004

Can't believe people use classfull addressing still. Just to let know if you mention classes around a bunch of network engineers they'll probably laugh at you. What I'm saying is make sure you understand CIDR :)

GOOCHY
Sep 17, 2003

In an interstellar burst I'm back to save the universe!

doomisland posted:

Can't believe people use classfull addressing still. Just to let know if you mention classes around a bunch of network engineers they'll probably laugh at you. What I'm saying is make sure you understand CIDR :)

I'm having the opposite issue. After so many years of not using classful addressing I'm having a hard time making my brain subnet the way Lammle/Cisco wants me to do it.

hooah
Feb 6, 2006
WTF?

doomisland posted:

Can't believe people use classfull addressing still. Just to let know if you mention classes around a bunch of network engineers they'll probably laugh at you. What I'm saying is make sure you understand CIDR :)

Wait, I thought I was using CIDR, since I know about the slash notation and how it applies to the masks (the number of the slash is the number of on bits). That still doesn't help me when I have to subnet in the third octet.

doomisland
Oct 5, 2004

hooah posted:

Wait, I thought I was using CIDR, since I know about the slash notation and how it applies to the masks (the number of the slash is the number of on bits). That still doesn't help me when I have to subnet in the third octet.

I was more commenting on people still saying 'Class A/B/C' which no one uses anymore and haven't forever. It's only use is for understanding legacy networking. Keep on using /XX for subnets.

hooah
Feb 6, 2006
WTF?
That's all well and good, but it doesn't help me understand how to subnet an address that has host bits in the third octet.

inignot
Sep 1, 2003

WWBCD?

doomisland posted:

I was more commenting on people still saying 'Class A/B/C' which no one uses anymore and haven't forever. It's only use is for understanding legacy networking. Keep on using /XX for subnets.

People conflate the two all the time. A common misconception is that anything/8 is a class A; anything /16 is a class B; and that anything/24 is a class C. Which is not the case.

doomisland
Oct 5, 2004

hooah posted:

That's all well and good, but it doesn't help me understand how to subnet an address that has host bits in the third octet.


You should write everything out in binary to figure it out to understand it.

You have your network mask and host mask. Your block range is your host mask digits being all 0's to being all 1's. As mentioned before you can figure out your ranges from the highest bit in your host mask.

So if you have 172.16.0.0/19 your subnet is the following

11111111.11111111.11100000.0000000

The highest bit in the host mask is in the third octet and is the 5th (2^5 is 32) bit in it. Your netmask has 3 bits in the network mask in the third octet so you have 2^3 networks (which equals 8). So, now you have to figure out your boundaries which is just math.

172.16.0.0 - 172.16.31.255 | 10101100.00010000.00000000.00000000 - 10101100.00010000.00011111.11111111
172.16.32.0 - 172.16.63.255 | 10101100.00010000.00100000.00000000 - 10101100.00010000.00111111.11111111
172.16.64.0 - 172.16.95.255 | 10101100.00010000.01000000.00000000 - 10101100.00010000.01011111.11111111
172.16.96.0 - 172.16.127.255 | 10101100.00010000.01100000.00000000 - 10101100.00010000.01111111.11111111
172.16.128.0 - 172.16.159.255| 10101100.00010000.10000000.00000000 - 10101100.00010000.10011111.11111111
172.16.160.0 - 172.16.191.255| 10101100.00010000.10100000.00000000 - 10101100.00010000.10111111.11111111
172.16.192.0 - 172.16.223.255| 10101100.00010000.11000000.00000000 - 10101100.00010000.11011111.11111111
172.16.224.0 - 172.16.255.255| 10101100.00010000.11100000.00000000 - 10101100.00010000.11111111.11111111

hooah
Feb 6, 2006
WTF?
I think I get my confusion - Lammle uses CIDR values, but subnets in a classful way. Is that correct? And if so, which way should I be most comfortable with for the Network+ test?

Ganon
May 24, 2003
While we're talking subnetting, I have a dumb question.

Watching CBT Nuggets, and the first example says you bought the IP 216.21.5.0 and want 5 networks (3 offices and the 2 wan links connecting them). The answer ranges are 216.21.5.0 - 216.21.5.31, 216.21.5.32 - 216.21.5.63, etc. But aren't those public IPs? So how does that work when assigning the addresses to servers and clients and such, aren't those ranges also public IPs that other people could own? From what I've seen it's usually private ip ranges like 10.0.0.0 - 10.255.255.255.

PancakeTransmission
May 27, 2007

You gotta improvise, Lisa: cloves, Tom Collins mix, frozen pie crust...


Plaster Town Cop

Ganon posted:

While we're talking subnetting, I have a dumb question.

Watching CBT Nuggets, and the first example says you bought the IP 216.21.5.0 and want 5 networks (3 offices and the 2 wan links connecting them). The answer ranges are 216.21.5.0 - 216.21.5.31, 216.21.5.32 - 216.21.5.63, etc. But aren't those public IPs? So how does that work when assigning the addresses to servers and clients and such, aren't those ranges also public IPs that other people could own? From what I've seen it's usually private ip ranges like 10.0.0.0 - 10.255.255.255.
I just went and looked at that nugget. He mentions that they bought the "Class C" ip range. This means 216.21.5.0/24 (216.21.5.0 - 216.21.5.255). If you bought that, it is yours and nobody else can use them publicly. I know it's an example but someone with only a offices (and no public internet servers) would probably not buy an entire /24. But if you did buy it, you can use those IPs in your network however you want. That IP range would then be routed to your network and then it's up to you to deal with it from there. The whole reason private IP ranges and NAT were implemented were to conserve the public IP range.

Graves
Feb 10, 2002

Ask me about the time I posted a thread in GBS with a full confession on how I stabbed a man to death with my pocket knife
Passed the last OCP test (1Z0-053) last week. I don't think I've ever taken a test that was so much more in-depth than any of the training material I found for it. Luckily I've worked with the product a good bit and over-studied. Serious bitch of a test, if anyone is considering that cert track be absolutely SURE you are ready for that test.

MrKatharsis
Nov 29, 2003

feel the bern
How did you find OCA? I'm thinking about taking it soon.

duck hunt
Dec 22, 2010
Any SQL Server / DBA goons in this thread?

I got my MCITP SQL 2008r2, and it took me until last year (2012) to get it done. Microsoft has rolled out a new exam structure. Now rather than MCITP being king poo poo, you have the MCSE. I'm still confused by all this. Basically Microsoft is offering "upgrading" exams that let you take your earlier credentials and upgrade them to the new credentials.

It is laid out here.

Anyway, I'm working on upgrading to SQL Server 2012. The new exams, while fewer in number, are much harder. The test assumes that you know everything about 2008r2, and then grills you on the new features. There still are general questions that are version independent. I wanted to give everyone a heads up about the new Microsoft credentials and the new upgrade exams.

keseph
Oct 21, 2010

beep bawk boop bawk
I posted about MCSA a page or two ago. I wasn't interested in bothering with certs until recently, so I'm playing catch-up. Which 2012 exams have you taken so far and do you have any suggestions for focus areas/study resources?

Parlett316
Dec 6, 2002

Jon Snow is viciously stabbed by his friends in the night's watch for wanting to rescue Mance Rayder from Ramsay Bolton
I'm getting ready to start studying for CCENT and then onto CCNA. I think I have a handle on books and study videos but I'm starting to get a bit apprehensive about buying equipment for a study lab. Is it necessary to have one or would an emulator lab work? I think my biggest thing is that I'm not sure where to start when buying equipment.

psydude
Apr 1, 2008

You can get by with GNS3 and an old 2950.

ToG
Feb 17, 2007
Rory Gallagher Wannabe
I passed ICND1 with only a 2950 so it's definitely doable.

Langolas
Feb 12, 2011

My mustache makes me sexy, not the hat

ToG posted:

I passed ICND1 with only a 2950 so it's definitely doable.

Thats what I did for passing it. Packet tracer works fine for what they cover on CCNA too.

Parlett316
Dec 6, 2002

Jon Snow is viciously stabbed by his friends in the night's watch for wanting to rescue Mance Rayder from Ramsay Bolton
Awesome, shelling out $400 wasn't something I really wanted to do right now.

CrazyLittle
Sep 11, 2001





Clapping Larry
$400?? you can get a 2960 for <$100
http://www.ebay.com/itm/290850651640

Parlett316
Dec 6, 2002

Jon Snow is viciously stabbed by his friends in the night's watch for wanting to rescue Mance Rayder from Ramsay Bolton

CrazyLittle posted:

$400?? you can get a 2960 for <$100
http://www.ebay.com/itm/290850651640

I was looking at kits from different websites. I think the package I looked at had 3 routers and 3 switches. I ended up buying a 2950 for $30.

DropsySufferer
Nov 9, 2008

Impractical practicality

psydude posted:

You can get by with GNS3 and an old 2950.

I can run GNS3 fine with nothing but the correct IOS image. Why would you even need the 2950 (feels like I'm missing something very obvious)?

The one thing that had me stuck for a day was getting the "cloud" or real connection to your PC to work. Note that if you have a wireless connection on your PC to router, you'll need to create a bridge with the loopback adapter and most importantly restart your PC. It sounds very simple but google searching for an answer did not help.

psydude
Apr 1, 2008

DropsySufferer posted:

I can run GNS3 fine with nothing but the correct IOS image. Why would you even need the 2950 (feels like I'm missing something very obvious)?

The one thing that had me stuck for a day was getting the "cloud" or real connection to your PC to work. Note that if you have a wireless connection on your PC to router, you'll need to create a bridge with the loopback adapter and most importantly restart your PC. It sounds very simple but google searching for an answer did not help.

The switching portion of ICND2 has some things that can't be done with the switch card in the ISR IOS images. Lack of experience with switch configuration was one of the things that got me the first time I took it.

Contingency
Jun 2, 2007

MURDERER
I recommend Cisco Learning Labs over GNS3 for the CCNA.

Isn't a buggy POS, does switches, don't have to "acquire" IOS images :filez:, provides scenarios so you aren't blindsided by exam objectives.

psydude
Apr 1, 2008

Contingency posted:

I recommend Cisco Learning Labs over GNS3 for the CCNA.

Isn't a buggy POS, does switches, don't have to "acquire" IOS images :filez:, provides scenarios so you aren't blindsided by exam objectives.

How expensive are those? Because I gathered he was trying to do it on a budget.

Contingency
Jun 2, 2007

MURDERER
ICND2 is $50 for 90 days/25 hours. Although some might balk at a time limit, I only used up 10 hours when I took ICND2. $50 is cheaper than kit pricing, and certainly less than a retake.

Seriously, it's this vs "I thought Cisco didn't care about Frame Relay/NAT/IPv6" during an exam.

I took ICND1 after using the Cisco Press book to study with; I don't believe the ICND1 lab provides $50 of value over what the Cisco Press book offered with their practice exam.

b0ng
Jan 16, 2004

Thats a nice Game 7 you have there. Would be a shame if somebody nailed it down.

psydude posted:

You can get by with GNS3 and an old 2950.

My professor is pretty adamant that Packet Tracer will be able to provide the switch and router functions that you would need to practice with in order to study for the CCENT and the CCNA.

Inspector_666
Oct 7, 2003

benny with the good hair

b0ng posted:

My professor is pretty adamant that Packet Tracer will be able to provide the switch and router functions that you would need to practice with in order to study for the CCENT and the CCNA.

Packet Tracer is missing support for some commands (| is the one that jumps out for me) and also treats interface input differently than in IOS proper.

I mean, Cisco built it for people studying for the CCNA, so yes it would work for that, but I could see people getting into bad habits from it. Checking configs using "hosts" is so much easier in Packet Tracer as long as you just need to ping stuff though, so that's nice.

EDIT: Also it seems like when it tries to resolve a host if you misspell input in the console, it never actually times out and you have to "power cycle" the router instance. That's annoying as hell.

Inspector_666 fucked around with this message at 06:52 on Feb 1, 2013

Sylink
Apr 17, 2004

Packet Tracer does eventually time out, but it takes like 2 minutes or something ridiculous.

duck hunt
Dec 22, 2010

keseph posted:

I posted about MCSA a page or two ago. I wasn't interested in bothering with certs until recently, so I'm playing catch-up. Which 2012 exams have you taken so far and do you have any suggestions for focus areas/study resources?

I've taken the 70-457 and 70-458. Those are the first 2 of 4 upgrade exams. If you are starting out, you can get your MCSA with 70-461, 70-462, and lastly 70-463. Honestly, if you know databases, the 461 exam is all about queries. You get a lot of freebies by just knowing databse concepts like indexing, query writing techniques, relational integrity, etc. You do have to learn the MS features and you have to learn to use SSMS (SQL Server Management Studio [basically RDBMS]). 462 has some gimmies on that too. It is "the DBA" test. Know you backups and restores inside and out, and then fill out the rest with MS specific stuff. I took and passed the 2008 versions of 461 and 462.

ryo
Jan 15, 2003

b0ng posted:

My professor is pretty adamant that Packet Tracer will be able to provide the switch and router functions that you would need to practice with in order to study for the CCENT and the CCNA.

I passed CCENT and CCNA both first time only using packet tracer, hadn't touched a Cisco device beforehand.

ToG
Feb 17, 2007
Rory Gallagher Wannabe
I have ICND2 in a few days. I've had it booked since September but sickness in the family has meant I had to put it off. Luckily I've been able to push it back time and time again so as not to lose my fee but it doesn't seem possible at the minute.
So I'm about 90% of the way there, If I had the option I'd cancel my test and rebook for next week (but I'd probably lose my fee). ~

So this is for anyone who has passed ICND1/ICND2. Is there anything in particular I should pay attention to ICND2 for my last minute studies?

I'm fairly confident on the IOS stuff and subnetting quickly. I've done a fair bit of routing, NAT and ACL. I'm most concerned about IPV6 and Frame Relay. I've only got one Serial link in my lab so I plan to practice today using GNS3.

e: I managed to post-pone the test by switching test centres. I'd still appreciate the input but atleast I've bought myself a week or more

ToG fucked around with this message at 11:53 on Feb 2, 2013

psydude
Apr 1, 2008

ROUTE costs $200? Ugggghhhhh.

incoherent
Apr 24, 2004

01010100011010000111001
00110100101101100011011
000110010101110010
CBT nuggets training is now 99/month. Not a bad deal.

Bardlebee
Feb 24, 2009

Im Blind.

psydude posted:

ROUTE costs $200? Ugggghhhhh.

I am about the schedule SWITCH and I know the feeling. I still have ROUTE to go and TSHOOT. But first, it would be nice if I could find a position where I am dealing with routing. Right now its mostly layer 2 stuff.

keseph
Oct 21, 2010

beep bawk boop bawk

duck hunt posted:

I've taken the 70-457 and 70-458. Those are the first 2 of 4 upgrade exams. If you are starting out, you can get your MCSA with 70-461, 70-462, and lastly 70-463. Honestly, if you know databases, the 461 exam is all about queries. You get a lot of freebies by just knowing databse concepts like indexing, query writing techniques, relational integrity, etc. You do have to learn the MS features and you have to learn to use SSMS (SQL Server Management Studio [basically RDBMS]). 462 has some gimmies on that too. It is "the DBA" test. Know you backups and restores inside and out, and then fill out the rest with MS specific stuff. I took and passed the 2008 versions of 461 and 462.

I've been working with DBs for 4 years so I'm confident in my base knowledge, but it's asinine things like memorizing startup params that are a concern.

MC Fruit Stripe
Nov 26, 2002

around and around we go

psydude posted:

ROUTE costs $200? Ugggghhhhh.
The cost a certification is only relevant if you plan to fail it. :eng101:

Adbot
ADBOT LOVES YOU

psydude
Apr 1, 2008

MC Fruit Stripe posted:

The cost a certification is only relevant if you plan to fail it. :eng101:

The ROI is definitely there. Per my contract, once I get the CCNP I get an automatic $3,000 salary increase.

  • 1
  • 2
  • 3
  • 4
  • 5
  • Post
  • Reply