![]() |
Software Information |
|
|
|
Vlans
In order to implement VLANs in a network environment, you'll need a Layer 2 switch that supports them. Almost all switches sold today that are described as "managed" switches provide the ability to make ports members of different VLANs. However, switches that don't provide any configuration function (such as many basic, lower-end switches) don't provide the ability to configure VLANs. Almost any Cisco Catalyst switch that you'll come across today provides the ability to make ports part of different VLANs. Before getting into the details of how a VLAN functions, it's worth exploring some of the advantages that a VLAN provides. First and foremost, VLANs provide the ability to define broadcast domains without the constraint of physical location. For example, instead of making all of the users on the third floor part of the same broadcast domain, you might use VLANs to make all of the users in the HR department part of the same broadcast domain. The benefits of doing this are many. Firstly, these users might be spread throughout different floors on a building, so a VLAN would allow you to make all of these users part of the same broadcast domain. To that end, this can also be viewed as a security feature - since all HR users are part of the same broadcast domain, you could later use policies such as access lists to control which areas of the network these users have access to, or which users have access to the HR broadcast domain. Furthermore, if the HR department's server were placed on the same VLAN, HR users would be able to access their server without the need for traffic to cross routers and potentially impact other parts of the network. VLANs are defined on a switch on a port-by-port basis. That is, you might choose to make ports 1-6 part of VLAN 1, and ports 7-12 part of VLAN 2. There's no need for ports in the same VLAN to be contiguous at all - you could make ports 1, 3 and 5 on a switch part of VLAN 1, for example. On almost all switches today, all ports are part of VLAN 1 by default. If you want to implement additional VLANs, these must first be defined in the switch's software (such as the IOS on a Cisco switch), and then ports must be made members of that VLAN. A VLAN isn't limited to a single switch, either. If trunk links are used to interconnect switches, a VLAN might have 3 ports on one switch, and 7 ports on another, as shown below. The logical nature of a VLAN makes it a very effective tool, especially in larger networking environments. Inter-VLAN Communication I mentioned a few times already that a VLAN is simply a special type of broadcast domain, in that it is defined on a switch port basis rather than on traditional physical boundaries. Recall from the earlier articles in this series that when a host in one broadcast domain wishes to communicate with another, a router must be involved. This same holds true for VLANs. For example, imagine that port 1 on a switch is part of VLAN 1, and port 2 part of VLAN 99. If all of the switch's ports were part of VLAN 1, the hosts connected to these ports could communicate without issue. However, once the ports are made part of different VLANs, this is no longer true. In order for a host connected to port 1 to communicate with another connected to port 2, a router must be involved. You may already be familiar with the concept of a Layer 3 switch. A Layer 3 switch is generally a Layer 2 switching device that also includes the ability to act as a router, usually through the use of additional hardware and software features. If a switch includes Layer 3 capabilities, it can be configured to route traffic between VLANs defined in the switch, without the need for packets to ever leave the switch. However, if a switch only includes Layer 2 functionaility, an external router must be configured to route traffic between the VLANs. In some cases, it's entirely possible that a packet will leave switch port 1, be forwarded to an external router, and then be routed right back to port 2 on the originating switch. For this reason, many companies have decided to implement Layer 3 switches strategically throughout their network. Regardless of the method chosen, it's most important for you to recognize that when a host on one VLAN wants to communicate with a host on another, a router must somehow be involved. Extending VLANs Between Switches In order to extend VLANs across different switches, a trunk link must interconnect the switches. Think of a trunk link as being similar to an uplink between hubs - usually a trunk link is implemented between fast switch ports on two different switches using a crossover cable. For example, you might interconnect two Gigabit Ethernet ports on different switches using fiber optics, or two 100 Mbps switch ports using a traditional Cat5 crossover cable. In most cases it is generally recommended that you use the fastest port available for trunk connections, since this link will often carry a great deal of traffic, possibly for multiple VLANs. To begin, let's assume that you have connected a link between the 100 Mbps ports of two switches, as shown below. Notice that each of these ports are members of VLAN 1 on each switch. By default, without any additional configuration, these ports will act as a trunk link, but will only pass traffic for the VLAN associated with their port connections - VLAN 1. This type of link, where only traffic for a single VLAN is passed, is referred to as an "Access Link". While an access link does the job for a single VLAN environment, multiple access links would be required if you wanted traffic from multiple VLANs to be passed between switches. Having multiple access links between the same pair of switches would be a big waste of switch ports. Obviously another solution is required when traffic for multiple VLANs needs to be transferred across a single trunk link. The solution for this comes through the use of VLAN tagging. VLAN Tagging When you want traffic from multiple VLANs to be able to traverse a link that interconnects two switches, you need to configure a VLAN tagging method on the ports that supply the link. Although there are a number of tagging methods in use for different technologies, the two that you need to be aware of for the purpose of the CCNA exam are known as InterSwitch Link (ISL) and 802.1q. ISL is a Cisco proprietary VLAN tagging methods, while 802.1q is a open standard. When interconnecting two Cisco switches, ISL is usually the best choice, but if you need to interconnect switches of different types (a Cisco switch and an Avaya switch, for example), then you'll need to use IETF. For the CCNA exam, the only thing that you really need to know about 802.1q is that it is the open standard for VLAN tagging, and should be used in mixed environments. The exam expects you to have a somewhat deeper understanding of ISL, including how it works, when it can be used, and ultimately, its purpose. First and foremost, you need to be aware that ISL will only function on ports with a speed of 100 Mbps or greater. That is, you cannot use ISL in conjunction with a 10 Mbps port. That shouldn't be an issue, since most Cisco Catalyst switches provide at least one or two Fast Ethernet ports, even on lower-end models like the 1912. Secondly, the ports on either end of the link need to support and be configured for ISL. ISL is referred to as a VLAN tagging method. Essentially, what ISL does is tag a frame as it leaves a switch with information about the VLAN that the frame belongs to. For example, if a frame from VLAN 99 is leaving a switch, the ISL port will add information to the frame header, designating that the frame is part of VLAN 99. When this ISL frame reaches the port at the other end of the switch, it will look at the ISL header, determine that the frame is meant for VLAN 99, will strip off the ISL information, and will forward it into VLAN 99. One of the issues with VLAN tagging is that by adding information to an Ethernet frame, the size of the frame can move beyond the Ethernet maximum of 1518 bytes, to 1522 bytes. Because of this, all non-ISL ports will see frames larger than 1518 bytes as giants, and as such, invalid. This is the reason why a port needs to be configured for ISL in order for it to understand this different frame format. One VLAN tagging is configured on the ports associated with the link connecting switches, the link is known as a "Trunk Link". A trunk link is capable of transferring frames from many different VLANs through the use of technologies like ISL or 802.1q. A better strategy here would be to configure ISL tagging on one of the router's Fast Ethernet interfaces, and then configure ISL on the connected switch port. This configuration, also known as a "router on a stick", would allow the router to process the traffic of multiple VLANs, and route traffic between them. We'll get into the details of routing within the next few articles. Beyond its intended purpose of configuring trunk links between switches, ISL is often used in other ways. For example, it is possible to purchase network interface cards that support ISL. If a server were configured with an ISL-capable network card, it could be connected to an ISL port on a switch. This would allow a server to be made part of multiple VLANs simultaneously, the benefit being that hosts from different broadcast domains could then access the server without the need for their packets to be routed. While this may seem like a perfect solution, you need to remember than the server would now see all traffic from these VLANs, which could negatively impact performance. I hope this article has provided you the good information about the Vlans. This articles is submitted by Kashif Raza http://www.networkingtutorials.net
MORE RESOURCES: table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/0-0fd=Rurl=http://www.tradingmarkets.com/.site/news/Stock%2520News/2108178/cid=1287334473ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNFFbQJjxwpjlYwNYKZcIEUKw5sFOAUltimate bSoftware/b to Present at the Needham Growth Stock Conference/abrfont size=-1font color=#6f6f6fTrading Markets (press release),nbsp;CAnbsp;-/font nobr3 hours ago/nobr/fontbrfont size=-1Scherr and Dauerman will discuss Ultimate bSoftware#39;s/b recurring revenue business, as well as an overview of the company#39;s history and financial results. b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/0-1fd=Rurl=http://www.marketwatch.com/news/story/callidus-software-presents-11th-annual/story.aspx%3Fguid%3D%257B284A7760-4B71-4F71-9817-B0F5452AD99A%257D%26dist%3Dmsr_2cid=1287334473ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNH8P_s4NkS6GdovqcoATmJhP7dVswCallidus bSoftware/b Presents at 11th Annual Needham Growth Stock b.../b/a font size=-1 color=#6f6f6fnobrMarketWatch (press release)/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287334473hl=ennobrall 15 news articles/nobr/a/font/div/font/td/tr/table table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/1-0fd=Rurl=http://www.bizjournals.com/kansascity/stories/2009/01/05/daily8.htmlcid=1287329548ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNHvgFUg3GcKpbudoPI7Bo2RNjS7dgPerceptive bSoftware/b lays off 53 Kansas City Business Journal/abrfont size=-1font color=#6f6f6fBizjournals.com,nbsp;NCnbsp;-/font nobr10 hours ago/nobr/fontbrfont size=-1In a second round of cuts, Perceptive bSoftware/b Inc. laid off 53 employees on Monday, or 10 percent of its work force. The cuts, announced to employees b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-1fd=Rurl=http://www.kansascity.com/business/story/965873.htmlcid=1287329548ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNHsDf0TTuvqF_fU-e7p36U1oXBjwQPerceptive bSoftware/b lays off 53 workers/a font size=-1 color=#6f6f6fnobrKansas City Star/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-2fd=Rurl=http://www.shawneedispatch.com/news/2009/jan/05/software-firm-cuts-more-jobs/cid=1287329548ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNHaEq08nHOOVucDt9QHyfgrbjeVFAbSoftware/b firm cuts more jobs/a font size=-1 color=#6f6f6fnobrShawnee Dispatch/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287329548hl=ennobrall 6 news articles/nobr/a/font/div/font/td/tr/table table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/2-0fd=Rurl=http://www.reuters.com/article/pressRelease/idUS101412%2B05-Jan-2009%2BBW20090105cid=1287231874ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNEwUM4b6QsRBebd1ntqytpPdG5XPgPerkinElmer and IDBS Announce bSoftware/b Collaboration to Improve b.../b/abrfont size=-1font color=#6f6f6fReutersnbsp;-/font nobr18 hours ago/nobr/fontbrfont size=-1PerkinElmer`s Columbus bsoftware/b is a flexible, convenient solution for high volume image storage and management. Designed as a partner product for the Opera b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/2-1fd=Rurl=http://www.genomeweb.com/issues/news/151602-1.htmlcid=1287231874ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNFJ2Lp13a47oJ1pv1HvylZDBcA-agPerkinElmer, IDBS Integrate Data Management and Storage bSoftware/b/a font size=-1 color=#6f6f6fnobrGenomeWeb News/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/2-2fd=Rurl=http://www.reuters.com/article/pressRelease/idUS101415%2B05-Jan-2009%2BBW20090105cid=1287231874ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNHL_oIMpH4X6Q3GQufgtz8nhyydNAPerkinElmer Launches Operetta High Content Screening (HCS) System/a font size=-1 color=#6f6f6fnobrReuters/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287231874hl=ennobrall 23 news articles/nobr/a/font/div/font/td/tr/table table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/3-0fd=Rurl=http://www.reuters.com/article/pressRelease/idUS111716%2B05-Jan-2009%2BBW20090105cid=1287229405ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNHNyKGfC7Cs7Y1Z0Mll2yJKRkG_8AZyLAB Receives Highest Rating in Research Firm`s E-Discovery b.../b/abrfont size=-1font color=#6f6f6fReutersnbsp;-/font nobr18 hours ago/nobr/fontbrfont size=-1quot;ZyLAB offers a very robust end-to-end e-discovery bsoftware/b platform that is ideally suited for numerous organizations ranging from law firms, corporations, b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/3-1fd=Rurl=http://www.msnbc.msn.com/id/28504084/cid=1287229405ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNEciBXEGrdVqKxO_hbYj-QwNHCmwQClearwell Systems Receives Highest Rating in Leading Analyst b.../b/a font size=-1 color=#6f6f6fnobrMSNBC/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287229405hl=ennobrall 13 news articles/nobr/a/font/div/font/td/tr/table table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/4-0fd=Rurl=http://www.reuters.com/article/pressRelease/idUS82934%2B05-Jan-2009%2BBW20090105cid=1287205999ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNGkultz_anq6NLP3WDI6zpB4HxHnwInsider bSoftware/b to Unveil TypeTrax at Macworld Expo: Represents b.../b/abrfont size=-1font color=#6f6f6fReutersnbsp;-/font nobr20 hours ago/nobr/fontbrfont size=-1New Digital Asset bSoftware/b Tracks Projects, Font Usage and Automatically Preflights InDesign and Illustrator Jobs LOS GATOS, California--(Business Wire)-- b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-1fd=Rurl=http://stuff.techwhack.com/5956-typetraxcid=1287205999ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNFQAGBpq_baMRD4q9k-Cdcgp1uLPAInsider bSoftware/b launches TypeTrax/a font size=-1 color=#6f6f6fnobrTechWhack/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-2fd=Rurl=http://www.macworld.com/article/137910/2009/01/typetrax.htmlcid=1287205999ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNHb78cyxQa4W0KsSar66Vo_qiPSjgExpo: TypeTrax manages Creative Suite projects/a font size=-1 color=#6f6f6fnobrMacworld/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-3fd=Rurl=http://www.macnn.com/articles/09/01/05/insider.releases.typetrax/cid=1287205999ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNHUHlGUF26cW9wTOj7AaqDKaFOruATypeTrax manages Adobe CS documents, fonts, more/a font size=-1 color=#6f6f6fnobrMacNN/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287205999hl=ennobrall 21 news articles/nobr/a/font/div/font/td/tr/table table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/5-0fd=Rurl=http://www.macworld.com/article/137911/modelbaker.htmlcid=1287261884ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNHleXCTECokN0Z8z4mzGP1qKbU60gExpo: ModelBaker rapid app development bsoftware/b debuts/abrfont size=-1font color=#6f6f6fMacworld,nbsp;CAnbsp;-/font nobr14 hours ago/nobr/fontbrfont size=-1by Peter Cohen, Macworld.com Widget Press on Monday announced ModelBaker 1.0, a new rapid application development tool for Mac OS X. It costs $399 for a b.../b/font/div/font/td/tr/table table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/6-0fd=Rurl=http://www.reuters.com/article/pressRelease/idUS108198%2B05-Jan-2009%2BPRN20090105cid=1287231907ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNEQN6l9Wx__SUu9GUhAJ10w9uenKQTX Announces AutoSave(TM) CD/DVD Recordable Media Lineup With b.../b/abrfont size=-1font color=#6f6f6fReutersnbsp;-/font nobr18 hours ago/nobr/fontbrfont size=-1Users often fail to perform important backups because the bsoftware/b they are forced to use is confusing, making the whole process a hassle. b.../b/font/div/font/td/tr/table table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/7-0fd=Rurl=http://www.msnbc.msn.com/id/28504099/cid=1287230667ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNE8OxGMEXZrdfY9_jtRfgTPAFZysgIntrinsyc Licenses Soleus Transit to Supa Technology/abrfont size=-1font color=#6f6f6fMSNBCnbsp;-/font nobr1 hour ago/nobr/fontbrfont size=-1This newest release based on the Soleus bsoftware/b platform will be on display in the Supa booth at the 2009 Consumer Electronics Show (CES) January 8 - 11 in b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/7-1fd=Rurl=http://www.windowsfordevices.com/news/NS4043521480.htmlcid=1287230667ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNGXMRXfyMxgh88iRQr5B7WCUp1ZGwCE-based nav stack heads for CES/a font size=-1 color=#6f6f6fnobrWindowsForDevices/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/7-2fd=Rurl=http://www.proactiveinvestors.com/companies/news/820/intrinsyc-licenses-soleus-transit-software-to-supa-technology--0820.htmlcid=1287230667ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNGIRlGEGu_kinHSWOIRKDGJy6SSFAIntrinsyc licenses Soleus Transit bsoftware/b to Supa Technology/a font size=-1 color=#6f6f6fnobrProactive Investors USA Canada/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287230667hl=ennobrall 16 news articles/nobr/a/font/div/font/td/tr/table table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/8-0fd=Rurl=http://wimax.tmcnet.com/topics/wimax/articles/48021-smith-micro-mobile-wimax-management-software-clearwire.htmcid=1286850288ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNH20EzvTg_xHIKThK4VGScmXA1AkASmith Micro Mobile WiMAX Management bSoftware/b for Clearwire/abrfont size=-1font color=#6f6f6fTMCnetnbsp;-/font nobr18 hours ago/nobr/fontbrfont size=-1And now, Smith Micro bSoftware/b, Inc., a developer and marketer of mobility solutions and services for the wireless market, has announced it has been selected b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/8-1fd=Rurl=http://newsticker.welt.de/%3Fmodule%3Dsmarthouse%26id%3D828433cid=1286850288ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNEXNjqm7xgdDpjuE9gq88NWy3Ns0ASmith Micro’s Connection Management bSoftware/b Tapped for Clear b.../b/a font size=-1 color=#6f6f6fnobrWELT ONLINE/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/8-2fd=Rurl=http://www.xchangemag.com/hotnews/clearwire-mobile-broadband-usability.htmlcid=1286850288ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNGPp8LOuaXG11IS0NUrMehZNyDMgQClearwire Simplifies Mobile Broadband Usability/a font size=-1 color=#6f6f6fnobrxchange Magazine/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/8-3fd=Rurl=http://www.pcworld.com/businesscenter/article/156392/clearwire_set_to_launch_its_first_wimax_city.htmlcid=1286850288ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNENS6GxMtmpPg6VyXLgcLAdsNuNLgClearwire Set to Launch Its First WiMax City/a font size=-1 color=#6f6f6fnobrPC World/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/8-4fd=Rurl=http://www.washingtonpost.com/wp-dyn/content/article/2009/01/06/AR2009010600140.htmlcid=1286850288ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNEO4QUD_3mf6wiuSnX6biOFSYe2RgnobrWashington Post/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/8-5fd=Rurl=http://www.reuters.com/article/pressRelease/idUS82928%2B05-Jan-2009%2BBW20090105cid=1286850288ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNE5LcBgvmSp12BAca5yQzOz4eUGcQnobrReuters/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1286850288hl=ennobrall 41 news articles/nobr/a/font/div/font/td/tr/table table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/9i-0fd=Rurl=http://www.dividend.com/blog/%3Fp%3D4595cid=1287219423ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNFecnWy8nFO0H3vNh6xQ7aYpJzMyAimg src=http://nt0.ggpht.com/news?imgefp=oEjN6kenIpUJimgurl=www.dividend.com/blog/wp-content/uploads/storypics/mastercard.jpg width=80 height=64 alt= border=1brfont size=-2Dividend.com/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/9-0fd=Rurl=http://www.reuters.com/article/euMergersNews/idUSN0536893220090105cid=1287219423ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNHCy4BHpEgP0T8zCd7cZhOhJWqhoQMasterCard acquires bsoftware/b provider Orbiscom/abrfont size=-1font color=#6f6f6fReutersnbsp;-/font nobr16 hours ago/nobr/fontbrfont size=-1N) said on Monday it has acquired bsoftware/b provider Orbiscom Ltd for $100 million to enhance its payments processing system. Part of the purchase price for b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/9-1fd=Rurl=http://www.marketwatch.com/news/story/MasterCard-buys-payment-software-firm/story.aspx%3Fguid%3D%257BF9433138-E6FB-4DF7-877D-0DCD92EAB8E3%257Dcid=1287219423ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNGmcwVzY0JK3GsLP4J3yTjHBw63vgMasterCard buys payment bsoftware/b firm Orbiscom/a font size=-1 color=#6f6f6fnobrMarketWatch/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/9-2fd=Rurl=http://www.irishtimes.com/newspaper/breaking/2009/0105/breaking53.htmcid=1287219423ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNGwxnn3VJ5hV9GC9zhjiCKTQ5Aa3QIrish bsoftware/b firm sold to Mastercard for $100m/a font size=-1 color=#6f6f6fnobrIrish Times/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/9-3fd=Rurl=http://www.bizjournals.com/stlouis/stories/2009/01/05/daily1.htmlcid=1287219423ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNE2NziTq-j6Aq1fRIVsuYXBdbpQ8gMasterCard buys Orbiscom for $100M/a font size=-1 color=#6f6f6fnobrBizjournals.com/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/9-4fd=Rurl=http://www.siliconrepublic.com/news/article/12025/comms/pbx-goes-virtualcid=1287219423ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNG2rwJXsFoi9Eot5TbXvmRoeoicSgnobrSiliconrepublic.com/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/9-5fd=Rurl=http://lohud.com/article/20090106/BUSINESS01/901060322/-1/SPORTScid=1287219423ei=hx1jSbCiM4Gi9gS8x5CfBAusg=AFQjCNE5RtFShHXszi1E2BZoA_-ip84t_QnobrLower Hudson Journal news/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287219423hl=ennobrall 57 news articles/nobr/a/font/div/font/td/tr/table Software - Google News |
RELATED ARTICLES
How To Avoid Getting Hooked By Pfishing "Pfishing", sometimes spelled "Phishing", is a word that's used to describe amethod of identity theft where con men use fake e-mail that looks like it comesfrom legitimate sources. This e-mail is designed to hoodwink you into givingout personal and financial information. Microsoft Great Plains international implementation - USA / Mexico - overview for consultant Microsoft Business Solutions Great Plains was purchased from Great Plains Software and Great Plains Software itself had strong international marketing plans and campaigns. If we look back to 1990th - we'll see that GPS had Multilanguage support and Great Plains Dynamics / Dynamics C/S+ was localized and translated into multiple languages, including Spanish. Great Plains Dexterity: Customizations & Source Code Programming Great Plains Software Dynamics, Dynamics C/S+, eEnterprise were written on GPS proprietary programming language and development environment - Great Plains Dexterity. When Microsoft bought Great Plains Software, Dynamics was renamed into Microsoft Great Plains, but Dexterity is still the architectural base, there were trends to move MS Great Plains to . Snort for Network IDS What is Snort?Snort is an open source network intrusion detection system (NIDS) that can audit network traffic in real-time. Snort is a packet sniffer, a packet logger, and a network intrusion detection system. Programming Language Migration Path While I was preparing some personal background information for a potential client, I was reviewing all the programming languages that I have had experience with. I list languages that I'm most experienced with on my resume. Instant Messenger Clients If you have been using the Internet for any amount of time you have probably used an instant messenger at some time or another. They allow you to talk to your friends, family and co-workers with the click of a button. HelpDesk & Asset Management Software - Choosing The Right One If you are to buy a HelpDesk & Asset Management software, see the following checklist before you decide on one.Comprehensive Help Desk FunctionalityA good Help Desk product can dramatically rise the productivity of the Help Desk Personnel (which in turn will rise the organisation's productivity as a whole). Navision Customization: C/SIDE, C/ODBC, C/FRONT, XBRL - Development Options Microsoft bought Navision, Denmark based software development company, along with Great Plains Software. Now Microsoft Business Solutions offers following ERP applications: Navision (former Navision Attain), Microsoft Great Plains (former Great Plains Dynamics/eEnterprise), Solomon, Axapta. SpyBot - Search and Destroy versus Microsoft AntiSpyware (Beta).... My personal experiences... Ok.. Groove Network. Are you in it? If you are in a business that passes documents around to be reviewed and edited over and over before they are ready to be posted for advertising or for a client, then you have probably already heard of a software solution to help keep your "floating" documents organized from Groove Network. You may not be aware that there is another option out there. The True Meaning of Freeware The vast majority of us will have, at some point, had freeware games or applications installed on our systems. If you've played an online Java or Flash based game, you've used freeware. Accessing XML Using Java Technologies The most important benefit of XML is its simplicity. Though it is simple it is powerful enough to express complex data structures. Microsoft Office Selecting Secrets Stop the Runaway MouseWhat's the "runaway mouse?" You've seen it.. Groupware: Answers the 5 Questions of Document Collaboration Every organization which creates collaborative documents, whether they are budgets, presentations, reports, spreadsheets, or other documents recognizes that collaborative efforts are requirement. That collaboration always forces the 5 eternal document collaboration questions: Who? What? Where? When? How? The reason I refer to them as eternal is that every day businesses are faced with these questions and rarely find the answers when they collaborate on documents. Microsoft Navision and Crystal Reports - An Overview Microsoft Business Solutions - Navision is an integrated solution for small and midsize companies looking to expand their business operations without much interruption to its existing processes. Microsoft Navision enables businesses to alter as much or as little of its existing system, integrate add-ons and vertical segments of its development. Getting Patched with Windows Service Pack Are you one of those people that keeps track of recalls, just in case one of your most recent purchases gets recalled? Well, some of us do, but many of us don't.For those of us who don't keep up with recalls in general, it's just as easy to be unaware of the fact that Microsoft Windows offers us this wonderful service called a Service Pack, which is essentially a recall service for Microsoft Windows. What You Must Know About Spyware Right Now Spyware is like the new technological nuclear weapon on the internet. Spyware can not only damage the health of your computer but it can also steal your personal identity other personal information. Microsoft Great Plains GL: General Ledger - Overview For Consultant Microsoft Business Solutions Great Plains is marketed for mid-size companies as well as Navision (which has very good positions in Europe and emerging markets where it can be easily localized). Great Plains Inventory control is pretty robust and here we would like to give you highlights on standard functionality as well as what could be added to its standard features. Crystal Reports For Microsoft RMS - Overview For Developer/Report Designer If you are software developer or database administrator - we would like to give you the clues on Crystal Report creation for Microsoft RMSDatabase: Microsoft SQL Server or MSDE - this means that you can deploy native SQL driver for connection or use ODBC for flexibility. Tables Structure - it is extremely self-explanatory: Customer, Transaction (invoices, returns, layaways and others), TransactionAmount, Cashier, Tender to give you examples Links - Usually master table has ID column and Transaction-related table links by [Entity]ID column: Transaction. Microsoft Axapta, Navision or Great Plains: ERP Selection for Large Corporation If you would like to pick something from Microsoft, or its ERP subdivision - Microsoft Business Solutions, and in case of large public company, you should consider these three: Axapta, Navision or Great Plains. We are not talking about Solomon here, because it is recommended for project organization. |
|
Articles Home Page | Site Map | Main Site Home Page GETsonic | TrafficFish | WildThingsDesigns | NeatoDomains.com | Games | Ken J Wagner | iNetcome
|
|
| © 2008 |