Does a vlan require a extra host for VLSM

Basically I'm using the IP 192.168.0.0/16 on a network I'm making.
I have:
Staff: 250 hosts
Support: 30 hosts
Admin: 8 hosts
Servers: 5 hosts
HR: 50 hosts
Do i need to basically add 1 on to each so staff is 251 hosts.
I know we need to use a default gateway for VLAN.
I'm going to be using a 4 vlans and servers will be left as it is.

Leo
Your response would be quite appropriate if you read the first line of the original post and then composed your response without reading further. But if you read further and especially when you get to this line
I'm going to be using a 4 vlans and servers will be left as it is
then it becomes very evident that treating it as a single network space /16 is not the appropriate response.
Lee
I am not clear where you are going with this statement
Do i need to basically add 1 on to each so staff is 251 hosts. As I think about how you ask the question I wonder if this is an attempt to include/add an address for the gateway for each vlan.
But if you think carefully and clearly about the situation that you describe it becomes a series of questions about classical subnetting:
- if Staff needs 250 hosts then what subnet is large enough (but not larger) to fit 250 hosts? answer is /24. (with 254 usable host addresses)
- if Support needs 30 hosts then what subnet is large enough (but not larger) to fit 30 hosts? answer is /27. (with 30 usable host addresses) But if we also need to allow an address for the gateway (if there really are 30  Support hosts) the the address requirement becomes 31 and the subnet becomes a /26 (with 62 host addresses)
- if Admin needs 8 hosts then what subnet is large enough(but not larger) to fit 8 hosts? answer is /28. (with 14 usable host addresses) note that this may be a bit tricky since a /29 actually has 8 addresses but if you reserve an address for the subnet and an address for the broadcast then it is no longer large enough for 8 hosts.
- if Server needs 5 hosts then what subnet is large enough (but not larger) to fit 5 hosts? answer is /29. (with 6 usable host addresses)
- if HR needs 50 hosts then what subnet is large enough (but not larger) to fit 50 hosts? answer is /26. (with 62 usable hosts addresses)
HTH
Rick

Similar Messages

  • Does IC WebClient require a J2EE engine for any of its component

    Does IC WebClient requires a J2EE engine for any of its component? What's the need to install j2ee engine on CRM server?
    I would appreciate if anybody could give a good answer or any kind of documentation on it.

    Prakash,
    The answer is yes in terms of the J2EE enginge being required.  It primarily handles your multichannel access and broadcast messaging for the call center.  If you don't install it, then your IC webclient will not work correctly.  We are not using the "telphony" features of the call center, but still installed the java piece so that the standard functionality would work correctly.
    Good luck,
    Stephen

  • Does Apple TV require a monitor connection for boot up?

    I'm trying to use ATV as an audio server only (no video) controlled via the Apple remote application on my iPhone for connection to a distributed audio system in my house. I have connected the ATV to a Plasma TV via HDMI for configuration and connection to my wireless network and everything has synchronized and is working properly. I then unplug the ATV and move it to a new location for distributed audio purposes only and the ATV is not connecting back to the network. I have no monitor located anywhere near the new connection point so I only have RCA audio capables attached between the ATV and my distributed audio system (Russound CAV 6.6) My question is this: Does ATV require a monitor be connected to complete the boot up process and connect back to the network?

    yes multiple libraries (the file that has location of content) but a single centralized storage location for content... but i thought that's what you wanted in each zone? if not you could just have multiple accounts, enable iTunes sharing to the other accounts and then airTunes from those accounts to the appleTVs (if that works haven't tried it)... could only do audio this way since video iTunes sharing only works from computer to computer.
    me and my wife have separate accounts on our G5 desktop. so we each can have our own playlists, podcast etc but as far as actual content... thats on one location that we can both access and we share that. music for both accounts is in a shared folder on an internal drive and movies are on an external drive that we both have access to as well. we have nothing in our iTunes folders except our podcasts that we subscribe to. this way there is no duplication of content. we also have a mac mini in a bedroom that has nothing on it... everything there (movies, music etc) is access via iTunes sharing from my or my wife's (usually mine... since all the movies are added on my account)... so in this way you do have centralized storage.. and you also have the flexibility of having different content if that's what you'd like. i think people have gotten into trouble when they've tried to use the same library and iTunes folder for multiple account and ended with corrupted library file..

  • Search Requires an Extra Space for Foreign Language

    I have a field in the index that has both english and far east characters.  When I do a search, I append the * suffix operator.  I have no problem getting results for "whic*" - it brings returns back docs starting with these characters;
    however, whenever I search for foreign characters, I have to append a space before * in order to get back results.
    I am using the 2014-10-20-Preview api version.  Am I doing something wrong or is this a bug?

    Hi Janusz,
    I ran these in fiddler, you just need to substitute <your search svc>.  I pulled out some random article title/source from the google and china news sites.
    **** NOTE ***
    I also found a bug with a GET that didn't honor the + operator, see example at the end.  I don't know if it's something I didn't setup correctly.
    /* setup index */
    POST
    https://<your search svc>.search.windows.net/indexes?api-version=2014-10-20-preview
    {"name": "testindex", 
    "fields": [
    {"name": "ID", "type": "Edm.String", "key":true, "filterable": false, "sortable": false, "facetable": false, "searchable": false},
    {"name": "Title", "type": "Edm.String", "filterable": true, "sortable": false, "facetable": false, "suggestions": false, "searchable": true},
    {"name": "Source", "type": "Edm.String",  "filterable": true, "sortable": false, "facetable": false, "suggestions": false, "searchable": true}
    /* add docs */
    POST
    https://<your search svc>.search.windows.net/indexes/testindex/docs/index?api-version=2014-10-20-preview
    "value":
    {"ID":"20019","Title":"Airbag recall 2015: What consumers need to know","Source":"OregonLive.com"},
    {"ID":"20020","Title":"The Pirate Bay clambers back online after cop raid sunk site for 7 weeks","Source":"The Register"},
    {"ID":"20021","Title":"Super Bowl blitz: T-Mobile, Sprint aim to hit hard with buzzy ads","Source":"CNet"},
    {"ID":"20022","Title":"China tightens grip on the Internet, but it didn't block all the tools to get around","Source":"Mashable"},
    {"ID":"30022","Title":"Google Now updated with support for third-party apps on Android","Source":"Mashable"},
    {"ID":"30023","Title":"中国患者在韩医院整形突陷脑死亡","Source":"中国青年网"},
    {"ID":"30024","Title":"美华裔青少年:我是“ABC”,我想学普通话(图)","Source":"中国青年网"}
    /* search "with*", returns 2 docs */
    GET
    https://<your search svc>.search.windows.net/indexes/testindex/docs?$count=true&Search=with*&api-version=2014-10-20-Preview
    /* search "中国*", no docs */
    GET
    https://<your search svc>.search.windows.net/indexes/testindex/docs?$count=true&Search=中国*&api-version=2014-10-20-Preview
    /* search "中国%20*", gets 2 rows with the space */
    GET
    https://<your search svc>.search.windows.net/indexes/testindex/docs?$count=true&Search=中国%20*&api-version=2014-10-20-Preview
    *** BUG??? ***
    /* search "with+buzz*", should return 1 but instead, it's not honoring the + operator */
    GET
    https://<your search svc>.search.windows.net/indexes/testindex/docs?$count=true&Search=with+buzz*&api-version=2014-10-20-Preview

  • How much does it cost to get extra coverage for iPhone

    Because I need to get some

    Insurance?
    Home owners/renters works for many.
    But if it's new, AppleCare is your friend.

  • Does American Express require any extra coding to work in BC?

    last week, we took our client online with their shop and have experienced our first issue with the Registration Buy form. The client received a call from a customer that our form would not take American Express as a card. I checked the form and yes, Amex is listed as a card option. (I did not change that).  I did not change the script at the bottom of the page either.  The client is using Authorize.net (US only) as the gateway.
    Any thoughts? Anybody? Beuller?
    www.shoplechameau.com is the site.
    Thanks
    Chuck

    Thanks Liam,
    In the interim, we were informed that the site rejected a VISA as well, the client was able to provide an error message and we have narrowed it down to an Authorize.net issue. My boss has submitted a case to BC, but I think he will get the same answer I gave him (and that you have confirmed). Just in case, here is a screen cap of the error message.
    I have the client checking their information and looking into an issue I discovered on another site. Here is the gist of it from Authorize.net:
    The confusion has to do with the two options, Transaction Server (Live or Test) and Transaction Mode (Live or Test).
    From the Authorize.net developer site:
    Quote
    If you are posting your transaction requests to the gateway URLs https://test.authorize.net/gateway/transact.dll or https://certification.authorize.net/gateway/transact.dll and you are using an account given to you by an Authorize.Net Reseller or from Authorize.Net Sales, you may encounter this error. The gateway URLs mentioned above only work with specific test accounts, available upon request by completing the form at http://developer.authorize.net/testaccount/
    Try posting your transaction request to https://secure.authorize.net/gateway/transact.dll instead. If you need to submit a test transaction, you may do so by setting the field x_test_request to "TRUE". You may then remove x_test_request or set it to "FALSE" when you have completed your testing.
    Since we can only access the type of server (regular or test) and not the Mode on BC, I am at a standstill.
    But thanks anyhow,
    Chuck

  • Certificate does not match a unique certificate on this host for the issuer

    Hey everyone!
    I've been working with a strange issue on my persistent chat pool. I added a pool to my current deployment, all of which went without issue, until I tried to connect to one of my chat rooms, where I was met with the infamous "Your chat room access may
    be limited due to an outage". The logs were filled with the following error
    "The persistent chat server can not establish or maintain MTLS connection to the Lync Server
    Reason String: RemoteDisconnected"
    When I went to renew the internal cert, I get the message:
    WARNING: "4f000000139c71d470b9a56af1000000000013" does not match a unique certificate on this host for issuer "CN=hosting-EXAD2-CA-1, DC=hosting, DC=email".The following certificate was assigned for the type "Default":Default:
    E1864894FD306300A16F301AA21446CF45F7ABD3 EXPCPOOL.hosting.email 02/16/2017 CN=hosting-EXAD2-CA-1, DC=hosting, DC=email 4F000000161F1E51F1F5EB8C57000000000016ImageWARNING: "Set-CSCertificate" processing has completed with warnings. "1" warnings
    were recorded during this run.ImageWARNING: Detailed results can be found at "C:\Users\administrator.HOSTING\AppData\Local\Temp\1\Set-CSCertificate-[2015_02_17][08_29_57].html".
    Any thoughts on this?

    Hi,
    Check this old thread
    https://social.technet.microsoft.com/forums/lync/en-US/3d569519-8a43-4cd2-b322-718ee575e140/lync-frontend-certificates-vanish
    https://guybachar.wordpress.com/2014/04/16/certificate-requirements-for-lync-2013-enterprise-persistent-chat-server/
    Whenever you see a helpful reply, click on Vote As Helpful & click on Mark As Answer if a post answers your question.

  • Does anyone know how well the Intel Iris Pro installed on new 15" MacBook Pros performs using Photoshop and Lightroom. I have seen some differing opinions out there, and I would rather not shell out the extra cash for the Nvidia if I don't have to. I most

    Does anyone know how well the Intel Iris Pro installed on new 15" MacBook Pros performs using Photoshop and Lightroom?  I have seen some differing opinions out there, and I would rather not shell out the extra cash for the Nvidia if I don't have to. I mostly do photo editing for business and personal use. I have not used the 3D function in Photoshop, but I would like to know that I could.

    You could download a trial and see how well it works before committing to a subscription. You get 30 days to decide.
    Photo editor | Download free Adobe Photoshop CC trial
    Photo editor app | Download free Adobe Photoshop Lightroom 5 trial
    Gene

  • I have a G5 and bought and upgraded to osx 10.5.  now i need to upgrade to 10.5.6 or higher, but when i download and try to install, i get message "this volume does not meet requirements for this update".

    i am trying to sync an ipad to a power mac g5.  i bought and upgraded to osx 10.5 and have tried to download and 10.5.6 or higher, but i keep getting same message:  "you cannot install mac os x update on this volume.  this volume does not meet requirements for this update".  help!

    Mac OS X 10.5.8 Combo Update
    Java for Mac OS X 10.5 Update 5
    To me, in all such updates, goes without saying maybe: backup, repair permissions, repair your drive (Disk Warrior does more reliable and thorough job, and it comes out to pennies if you don't wait until needed). Clone your system so you can restore or use the backup - just in case.
    I'd even do a fresh format after your clone is done and do a full OS clean install and update, and then a quick import from Setup Assistant.
    Mac computer with USB 2.0 port
    Mac OS X v10.5.8 or later
    iTunes 10.2 or later recommended
    (free download from www.itunes.com/download)
    iTunes Store account
    Internet access
    I'm going to assume there is something with the partitions on the drive, partition table most likely, though I know I've seen others with that error message - doesn't really point to cause, rarely does (make sure latest firmware update etc is sometimes included but again, we know that isn't why).

  • VLAN - require any configuration on server side/host level ?

    Hi all,
    I always thought VLAN separate broadcast domain, and create "virtual" LANs across 1 physical switch.
    Also, it is a configuration to be done on the network switch side, any packet that goes into a VLAN interface, will be tagged automatically according to the VLAN it is connected.
    ==============================================================
    However from the link below ->
    http://www.linuxhorizon.ro/vlans.html
    It seems like VLAN is done on the server side/host OS as well.
    ===============================================================
    Q1) can i confirm if we need to set any configuration on OS level for VLANs ? If no, what is the link above trying to achieve ?
    Regards
    Noob

    With a normal client connection, as CF says, there is no need for any special vlan configuration on the host.
    However I think that link is referring to using a trunk from the host to the switch.
    Hopefully you read my other response before this one but when I talk about trunk above I'm not talking about how Unix refers to a trunk, I am using Cisco terminology.
    A trunk in Cisco terminology is a link that can carry traffic for multiple vlans. And you can run a trunk to a host device and then that device can send and receive traffic for multiple vlans.
    It's not often done with PCs but it is more common with servers although a lot of servers still are only a member of one vlan.
    Without wishing to confuse you a common setup in the Cisco world is an etherchannel trunk between switches ie. a single logical link made up of multiple physical links that can carry traffic for multiple vlans.
    Jon

  • Does Mac Mini require power adapter for European voltage?

    Does mac mini require a power adapter to safely operate on European voltage?

    lupunus wrote:
    cherylfrommiami wrote:
    Thanks Anamusic!  Since my other Apple products have the square adapters (iPhone, iPad, macbook) it seemed strange only to have a plug cord for mini.  don't want to fry it over here in Europe. 
    You only will need a new Duckhead US-Plug-Type C (2 pin Europlug) for your MagSafe power adaptor. See picture below.
    All Apple MagSafe adaptors are mulitivoltage devices and support AC 100V to 240V
    All Mac's with build in power supply (like iMac) have also multivoltage units.
    Mac Mini uses (depending on production year) different power units, Mac Mini 2011 have a internal power supply, but ALL are "multivoltage".
    So you just have to change the cord or use a adaptor.
    The above adaptor is suitable for use with Apple's laptop power adapters, and some other products e.g. some iPod, iPhone, iPad adapters. It will however not fit the Mac mini of any generation.
    Also, only the MacBook, MacBook Pro, and MacBook Air have the Mag Safe connector which is at the laptop end of the cable. The picture you posted is for the wall socket end of the cable. Older Mac mini computers use a proprietary connector, the 2010 and 2011 models use a standard IEC C7 connector.

  • TS4124 can imatch be used for more than one persons library of music, or does each person require a separate imatch account?

    Can iMatch be used for more than one person's library of music, or does each person require a separate iMatch account for their own library?

    1 account = 1 library, 2 = 2 and so on.

  • Does Time Machine require add'l backup space?

    I have two 2TB external hard drives which are pretty much full.
    I want to partition a 4TB drive into two 2TB sectors and backup my two drives.
    I don't need additional "archived" backups, those previous changes that Time Machine stores when additional space permits.  I just need an exact backup of the drives in their current state and that's all.
    If one of my current hard drives is full to 99% capacity (say 1.98 TB) and my backup drive has 2TB capacity, will Time Machine let me backup?  Or does it require additional space?
    I ask because I've been reading other posts that talk about "recommending" an additional 20-50% in size for saving previous changes.  I understand the suggestion, but I only have these two 2TB partitions and I don't believe I need those previous backups. 
    Is that "additional" space mandatory or optional?

    Thanks for the reply, ds store.
    I wonder if you (or anyone else) can still answer a question or two for me. 
    Are there any free options for making mirror backups of my drive?  I don't need the thing to be bootable.  It's all media files that don't change, but do get added to from time to time.
    I would settle for a click-and-drag copy of the drive, but the occasional addition of a new file makes it a hassle to remember what I need to add to the backup drive. 
    Sure would like a *free* solution to the problem of needing to backup a mostly full 2TB hard drive to another 2TB drive (ie, not much "work space") and not needing archived time machine-style backups ... just a system for knowing to add that occasional addition to my files.
    Seems like time machine should do something like that ... simply pass on additional archived files ... just copy the disc at hand, but I get the idea it doesn't.  It insists on creating those additional archived files AND requiring me to allocate substantial extra space for "work space".
    I don't want to buy another drive.  I want to back up my 2TB to another 2TB and make updates from time to time - without the wasted space of archived backups.
    Any free solutions to that?  Possibly something already in my Mac that I'm not aware of?

  • What is required in the HOST and QUEUE field when ...

    Hi
    When setting up my printer, i fill the options identical to what follows:
    PRINTER:  SAMSUNG HOME
    DRIVER:    GENERAL
    BEARER:  LPR <-----------------------------( NOT SURE IF IT IS THE CORRECT OPTION TO SELECT )
    The following fields appear once LPR is selected:
    ACCES POINT : HOME
    HOST:              WHAT COMES HERE?
    USER:              SKY00BER
    QUEUE:            WHAT COMES HERE?
    ORIENTATION: PORTRAIT
    PAPER SIZE: A4
     if it helps, my printer is SAMSUNG CLX-3175FW. It is Wifi Enable and is connected to my HOME acces point.
    please do correct me if there has to be changes to the BEARER or anything else.
    i could really use some help.
    thanks in advanced.

    sky00ber wrote:
     Hi,
    What is required in the HOST and QUEUE field when setting a WIFI printer?
    When setting up my printer, i fill the options identical to what follows:
    PRINTER:  SAMSUNG HOME
    DRIVER:    GENERAL
    BEARER:  LPR <-----------------------------( NOT SURE IF IT IS THE CORRECT OPTION TO SELECT )
    The following fields appear once LPR is selected:
    ACCES POINT : HOME
    HOST:              WHAT COMES HERE?
    USER:              SKY00BER
    QUEUE:            WHAT COMES HERE?
    ORIENTATION: PORTRAIT
    PAPER SIZE: A4
     if it helps, my printer is SAMSUNG CLX-3175FW. It is Wifi Enable and is connected to my HOME acces point.
    please do correct me if there has to be changes to the BEARER or anything else.
    HELP URGENTLY NEEDED!
    I'm not sure but I give it a try.Turn your security(WPA/WEP) and Firewall temporarely off. HOST is the IP address of the printer. QUEUE can be YES or a specific amount of prints, like 1,2,3......
    If I look at the manual of your printer I see that you can find the IP and MAC addresses in the Network Configuration Report.I don't know what the USER is doing there because if there is a user then there must be a password.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Quicktime error (this application requires an Extra (Quicktime 3)

    I have just updated to the recent version of Director and am in the process of updating my previous files for teaching. Everthing seemed to work in the update process and I published a new Projector for my Mac running latest version of Snow Leopard. However, although the tutorial I created runs correctly when I run it direcly from Director's main program, when I run it from the projector I created I get this error:
    Director Player error
    This application requires an Extra (Quicktime 3) that either does not exist or failed to initialize properly. Please make sure
    the appropriate extras are in the Extras folder(s).
    Before I updated I didn't have an Extras folder. Can someone please advise, simply.
    Mickey

    Quicktime 3 is pretty ancient, and Director 11 does not use it.  You can probably get away with simply removing the xtra reference in Modify, Movie, Xtras....  Find the Quicktime 3 xtra and remove it.  Director 11 comes with Quicktime 6 asset which is probably going to be added to your project automatically, so that should be all you need to do.  If your code does something that is specific to Quicktime 3, then you may need to make adjustments to your code.  You also may need to remove and re-import the quictime videos if they fail to play.

Maybe you are looking for

  • Apple, Please read.

    I posted here 2 weeks again when i bought my touch, as i did not know about the incompatability when Vista 64bit. Just look at all the posts regarding the same problem. Are you guys working on a fix/solution? How about some word that your aware and l

  • Generating a 'WHERE' clause using a function

    Hi I have below requirement, for given function below are input parameters, sk_func(salary,dept_no,job,hire_date) which ever input is given those inputs should be there in one statement, For example if I give input as select sk_func(5000,null,null,nu

  • Mail using 1Go Memory !

    Hi all, I tried to send a huge email with my Gmail account but it didn't work well. Since that, Mail created a backup folder with the same mail (the huge one) several time. The refresh icon never stops turning and Mail is using about 1 Go of memory !

  • Ocrcheck success on node1 but failed on node2.(11gR2 for Windows)

    Hi all , I have installed the Oracle Grid Infrastructure with ASM on windows 2008 x64, Everything is done without any error, but ocrcheck failed on nodde2. detail is below: checking commnds on node 1: *>crsctl check crs* CRS-4638: Oracle High Availab

  • The itunes store will not load up, i have 10.5

    the load bar goes about half way across, then stops. It will let me look at my acount, sync and use genius. But it refuses to go to the store. It was, for a fact, working just last week. I've checked my firewalls and ports. Everything looks fine. Its