How to set Static IP to a SML2008 ports.

Hello, I have a SML2008 smart switch. I want to set a static IP to each port.. is this possible? Thank you
Sent from Cisco Technical Support iPad App

Hi Patric, this switch does not support any layer 3 functions. It is strictly a layer 2 device. There won't be much creativity on this box. If you have a router/dhcp server that supports it, you could make a vlan for each port then have the DHCP server dish out specific addressess for each vlan.
That's pretty much the extent of creativity you'll find with this switch.
-Tom
Please mark answered for helpful posts

Similar Messages

  • How to set static IP for C4599 printer ???

    Was afraid if we clicked 'answered' <per 'answer' below> we may never get an answer to a followup question to 'PrintDoc'  at http://h30434.www3.hp.com/psg/board/message?board.id=Networking&thread.id=5277 .
    Hopefully this re-post will help.
    Question/s...
    1. When trying to set 'static IP', and click on 'this' link ( http://h30434.www3.hp.com/t5/forums/replypage/board-id/Networking/message-id/NetGear%20'RangeMax'%20... ) at your email < below> get...
    "An Unexpected Error has occurred."
    2. Also, getting printing error after HP Director shows C4500 wireless connected and starts printing.
    At 'Component Services' / 'Event Properties' shows...
    "The document http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVers owned by Alan failed to print on printer HP Photosmart C4500 series (Wireless). Data type: NT EMF 1.008. Size of the spool file in bytes: 48960. Number of bytes printed: 0. Total number of pages in the document: 2. Number of pages printed: 0. Client machine: \\AKM. Win32 error code returned by the print processor: 2250 (0x8ca).
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp."
    When click on 'events.aps' link get...
    'Event Viewer' showing 'xpsp2res.dll' file info ?
    Does #2. have anything to do with 'IP' question, and will 'static IP' fix ?"
    Please advise.
    Thanks much.
    Original answer...
    10-13-2009 10:03 AM
    PrintDoc 
    Master's Graduate
    Posts: 1383
    Registered: 08-19-2009
    Message 8 of 10
    Viewed 481 times
    Re: C4599, wireless Error-Printing, unable to 'communicate' with the device ???
    Sure we can set a static IP (actually we are going to reserve an IP address - even better).  But first, please mark the post that helped you solve the problem as "Accepted Solution".
    Connect to the wireless router by typing the IP address of the wireless router in the address field of your browser, then click Enter. 192.168.1.1 is the default IP address of the wireless router. The wireless router will prompt you to enter the user name of 'admin' and the password. The default password is 'password'.
    See the procedure on page 8-16 of this < http://h30434.www3.hp.com/t5/forums/replypage/board-id/Networking/message-id/NetGear%20'RangeMax'%20... > document to reserve and IP address for your printer. 
    You will need the MAC address of your printer (this is on the Network Config Page you printed from the front panel of the printer).
    (Although I am employed by HP, I am speaking for myself and not for HP)
    Original Posters - please mark the post that solves your problem as "Accepted Solution"
    Thanks again for your help !
    akm (XPproSP-3,IE-7,Office2003)
    This question was solved.
    View Solution.

    Thank you for the followup. 
    Just got back to this thread after trying what you suggested re new install program.
    Months ago, when originally tried to install new C4500, spent weekend, literally 4hrs on a Sat and 4hrs the following Sun with HP support on the phone trying to get C4500 wireless to work.
    Finally downloaded a new install program and after installing that and making other numerous setup adjustments, which I cant remember, it worked (the only saving grace for the time spent) for a while.
    But for the sake of trying, we did put in the original disk, just like page 4 (or our original paper manual) instructed (per your last post).
    The disk loaded and the program did its thing and then get...
    "A newer version fo this software is alredy installe on you HP HPPhotosmare C4500 series computer."
    So clicked 'finish'.
    Then loaded...
    PS_AIO_04_C4500_USW_Full_Win_enu_120_210_NB.exe
    ...which we thougth was the new installer program which we downloaded those months ago (same one you suggested).
    Started the '4 step' process.
    Got to 'step 3' and it connected to printer with usb cable.
    Along the way got message from 'network diagnostics'...
    "The PC and the printer are connected to different networks(192.168.1.0 and 192.168.0.0).  They must be connected to the same network.  This can happen when you use the manufacturer's default network name (SSID) and another nearby network is using the same name.
    The gateway address of the printer does not match the network to which the printer is connected. Reconfigure the setting on your printer to match."
    Tried changing ip addresses at network settings, but no help.
    Clicked on disregard and proceed.
    Started 'Network diagnostics' and got...
    HPPhotoshopEssential 'install' bar window.
    Either way, disk or new install program, get pop-up window with message...
    'The feature you are tryong to use is on a CD-ROM or tother removabledisk that inot available. Insert the 'HPPyotosmartEsesential' disk and click OK."
    Moved HP .msi and .cab files to same directory with ...NB.exe file.
    Install went ahead, and then needed 'setup.exe'.
    Opened setup.exe at disk and install went ahead.
    Installed latext updated 'HP Solution Center'.
    It showed both the C4500usb and wireless, but still wireless not 'connected'.
    Ran diagnostics and got same 'diagnostics' message as above.
    Made sure hardware enabled etc.
    How to fix ? 
    Thanks again for your help !
    akm (XPproSP-3,IE-7,Office2003)

  • How to set static IPv6 address/gateway in Arch (NOT tunnel)

    Hey Everybody,
    Today I decided to install Arch Linux. There was only one thing that I did not understand, and that is how to set up a static IPv6 address. I have native IPv6 connectivity at home and in Debian I used to edit /etc/network/interfaces to set up a static IPv6 adress. Since Arch uses rc.conf, what is the syntax to configure a static IPv6 address?
    I used to add something like this in Debian in /etc/network/interfaces:
    > iface eth0 inet6 static
    > address *my static address*
    > netmask 64
    > gateway *my gateway address*
    Or can I still use /etc/network/interfaces in Arch?
    Thank you for help.

    It can be done quite easily using the netcfg infrastructure.
    /usr/lib/network/connections/ipv6static
    #!/bin/bash
    . /usr/lib/network/network
    ipv6static_up() {
    load_profile $1
    ip -6 a a ${ADDRESS} dev ${INTERFACE}
    if ! [ -z "${GATEWAY}" ]
    then
    ip -6 r a 2000::/3 via ${GATEWAY} dev ${INTERFACE}
    fi
    ipv6static_down() {
    load_profile $1
    ip -6 a d ${ADDRESS} dev ${INTERFACE}
    if ! [ -z "${GATEWAY}" ]
    then
    ip -6 r d 2000::/3 via ${GATEWAY} dev ${INTERFACE}
    fi
    ipv6static_$1 $2
    exit $?
    /etc/network.d/eth0static
    CONNECTION="ipv6static"
    DESCRIPTION="Static configuration for IPv6"
    ADDRESS="2001:dead:beef:cafe::1/64"
    INTERFACE="eth0"
    GATEWAY="2001:feed:dead:beef::1" # Comment this out if no route needed
    I haven't tested the gateway part, but I don't see why it wouldn't work. You'll need iproute2, and to read up on netcfg (see http://wiki.archlinux.org/index.php/Network_Profiles) if you have trouble.
    Last edited by gunkaaa (2009-09-02 05:19:36)

  • How to set static IP for Deskjet Ink Advantage 6525 printer ???

    Hello,
    I try to set static IP address,but when i put the IP address from network configuration page in the browser's address bar ,can't find anything.

    Hi,
    Can you ping it ? It may not have anything in there for browsing.
    Updated: Well actually I use my printer and it shows many things - left side:
    Please refer to the following link:
         http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup-e-g-Windows-8/HP-Photosmart-6525-reboo...
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to set static value as output

    Hi all,
    It seems like this should be Discoverer 101, but I can't figure out how to do it.
    I'm creating a report that will, in essence, create input for a API interface to load SITs. There are certain columns that will have a static value for all records and others where I just need the column with a null value. Taking a look at the functions, there doesn't seem to be one that will just let me specify the value.
    Can someone help? It seems like this should be easy.
    Thanks in advance - J

    You should be able to create a calculation like:
    'MyStaticValue'or use the static value you want. Include the calculation in the report, and you are all set.

  • How to set static item in PL/SQL

    I know this may sound like a stupid quesiton but here's the issue.
    I need a PL/SQL function that will set a application item, or page item etc. The items that need to be set are static items. Ex: P1_FIRST_NAME
    I know if I use a PL/SQL function withing HTMLDB I can use the :P1_FIRST_NAME := 'Martin';... Problem is that you can not use that syntax if you store the function in Oracle itself.
    So I need to know the syntax to set items.
    Thanks.
    M.

    HTMLDB will also recognize variables using the format &VARIABLE_NAME. (with the period at the end). Have you tried this variable naming convention? Oracle may store it as it looks like a runtime variable.
    I don't know if it will work for your scenario or not...
    Adam Cumming
    Marion County

  • How to Set Static IP Settings on iOS

    Hello All!
    I have been helping someone with setting up a static internal IP address that would save to his iPhone. The issue we were having was that when we set his subnet mask to 255.255.255.0 it would not save the static setting. After testing a few things we found that setting the subnet mask to 255.255.255.255 it was able to be saved and then reverted to 255.255.255.0
    I just thought I would add this to the discussion forum if anyone was having issues with static IP settings on iOS!

    cant save static ip at my i pad or any manual configuration at wi fi ,try this methode 255.255.255.255bbut also cant save ,, idont know why tech support team for apple cant find answer about  this problem!!

  • How to set static IP for mobile network?

    Hi all,
    Can the Incredible 2 be set to a static IP address when connecting to mobile networks?
    I want to use my phone to connect to my PC using the Wireless Hotspot feature and give me a static IP address so I can register it with one of my work applications.
    Thanks
    Bill

    I was able to change the HotSpot ip address by going to your hot spot and tapping the menu>advanced>LAN Settings.  You should be able to change the IP address and Starting IP address from there.  One thing I did notice is that Verizon is assigning the DNS to the hotspot itself which is iffy.  Change the DNS setting on the laptop/Ipad or what have you to the universal DNS's that are already out there.

  • How to set static name and id for IFRAME html generated

    Hi,
    The name and the id of the Iframe is generated dynamically as shown in this example (final html generated):
    <IFRAME frameBorder=0 id="ivuFrm_page0ivu3" name="pb_837905732" title="Direccion Comunicaciones Integradas Home" src="home_direccion_comunicaciones_integradas.html" style="WIDTH:100%;HEIGHT:455px;" fixedHeight="455px" ></IFRAME>
    However, we need to link to this iframe using the  "target" property which has not been possible because we need static iframe name.
    Anny suggestions?
    THANKS.

    Hi,
    first of all  i think it is possible, you just need create a layout with nwds,  Thats possible in a .Par project you need this referance in portalapp.xml ;
    <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
    after creating this  you need create a jsp file for coding, it is possible with writing this in portalappxml ;
    <property name="com.sap.portal.reserved.layout.TemplateFile" value="example.jsp"/>
    in this jsp page write this code:
    <%@ taglib uri="prt:taglib:com.sap.portal.reserved.layout.TagLibLayout" prefix="lyt" %>
    <%@ page import = "com.sapportals.portal.prt.pom.IPortalNode" %>
    <%@ page import = "com.sapportals.portal.prt.connection.IPortalResponse" %>
    <%@ page import = "com.sapportals.portal.prt.connection.PortalHtmlResponse" %>
    <%@ page import = "com.sapportals.portal.prt.util.html.HtmlDocument" %>
    <%@ page import = "com.sapportals.portal.prt.util.html.HtmlMeta" %>
    <%@ page import = "com.sapportals.portal.prt.util.html.HtmlTitle" %>
    <%@ page import = "com.sapportals.portal.prt.util.html.HtmlDocType" %>
    <%
    IPortalNode portalNode = componentRequest.getNode().getPortalNode();
    IPortalResponse portalResponse =
         (IPortalResponse) portalNode.getValue(
              IPortalResponse.class.getName());
    HtmlDocument htmlDocument = null;
    if (portalResponse instanceof PortalHtmlResponse) {
         PortalHtmlResponse htmlResponse =
              (PortalHtmlResponse) portalResponse;
         htmlDocument = htmlResponse.getHtmlDocument();
         com.sapportals.portal.prt.util.html.Html htm = htmlDocument.getHtml();
         com.sapportals.portal.prt.util.html.HtmlBody body = htmlDocument.getBody();
         body.getElement("iframe name");
    You can get elements and change, remove or add new elements to framework
    %>
    <table width ="100%" >
                       <lyt:template>
                           <tr>
                        <td width ="25%" align="center" valign="top">
                                <lyt:container id="column1" /> 
                           </td>
                        <td width ="50%" align="center" valign="top">
                             <lyt:container id="column2" />
                           </td>
                           <td>     
                        <td width ="25%" align="center" valign="top">
                             <lyt:container id="column3" />
                           </td>
                      </tr>
                      </lyt:template>
              </table>
    After Deploying the layout, create a page with this layout and inculude the this empty  page to framework.
    İts should be work.
    Best regards.

  • WRT610N - Need to Set Static IP for Server and Port Forwarding

    Does anyone know how I can assign a static IP for my Home Media Server in the WRT610N router? I need to do this because of the settings I need to set for the server in the Single Port Forwarding.
    Thanks in advance!

    Never mind. I got it.

  • Trouble with setting Static IP in order to port forward thru 2 routers

    I currently have cable internet connected to one router (Linksys E2000 w/ firmware v1.0.03). That router is connected to another router, a Linksys E3200 w/ firmware v1.0.02. In order to properly forward ports through the E3200, I understand that I need to set up a static IP on that router.
    I've basically followed the steps outlined in this video, but when I enter all the IP addresses for Static IP settings, it won't allow me to access the router's setup page. I try entering the new IP that I've given it (which it tries to direct itself to automatically after I save the settings) and the connection times out. I am able to access the internet otherwise, however. From here I'm forced to do a factory reset on the router and start from square one.
    Anybody have any ideas? I'm getting pretty frustrated and would love to get the ports forwarded so I can get my server properly set up. 
    Solved!
    Go to Solution.

    I apologize, I should have been more specific. I have an ethernet cable connected from a standard port on the E2000 to a standard port on the E3200, which gives it internet access. On a hunch, last night I tried switching the cable to the Internet port on the E3200, but that gave no internet access.
    The two routers are chained because I'm living in a friend's house and he has his own router (the E2000) set up with his own devices. Thus, I have 3 devices of my own connected to the E3200, including a Synology DiskStation NAS, which I would like to forward some ports to. I don't need two LAN subnets-- honestly whatever it takes to forward the ports through the two routers to my NAS would be enough for me. 

  • [SOLVED] How to set non-root access to serial ports?

    I have this device which is listed as
    /dev/ttyUSB0
    I need to
    sudo chown sms /dev/ttyUSB0
    every time I reboot. Normally I would think to add myself to some group but "tty" group is not doing the trick... proof:
    [sms@sms-linux ~]$ groups sms
    tty wheel sms
    [sms@sms-linux ~]$ MinOZW
    Starting MinOZW with OpenZWave Version 1.0.758
    2014-03-15 06:32:07.921 Cannot find a path to the configuration files at ../../../config/, Using /usr/local/etc/openzwave/ instead...
    2014-03-15 06:32:07.928 mgr, Added driver for controller /dev/ttyUSB0
    2014-03-15 06:32:07.929 Opening controller /dev/ttyUSB0
    2014-03-15 06:32:07.931 Trying to open serial port /dev/ttyUSB0 (attempt 1)
    2014-03-15 06:32:07.933 ERROR: Cannot open serial port /dev/ttyUSB0. Error code 13
    2014-03-15 06:32:07.935 ERROR: Failed to open serial port /dev/ttyUSB0
    2014-03-15 06:32:07.936 WARNING: Failed to init the controller (attempt 0)
    ^C
    [sms@sms-linux ~]$ sudo MinOZW
    [sudo] password for root:
    Starting MinOZW with OpenZWave Version 1.0.758
    2014-03-15 06:32:23.776 Cannot find a path to the configuration files at ../../../config/, Using /usr/local/etc/openzwave/ instead...
    2014-03-15 06:32:23.782 mgr, Added driver for controller /dev/ttyUSB0
    2014-03-15 06:32:23.784 Opening controller /dev/ttyUSB0
    2014-03-15 06:32:23.786 Trying to open serial port /dev/ttyUSB0 (attempt 1)
    2014-03-15 06:32:23.794 Serial port /dev/ttyUSB0 opened (attempt 1)
    Edit: yes, it was after logout and even reboot.
    Last edited by smsware (2014-03-15 15:07:15)

    Hi,
    I also have a similar problem. I added myself to uucp group, but I still cannot access the serial port.
    [manjaro@mycomp work]$ sudo gpasswd -a manjaro uucp
    [sudo] password for manjaro:
    Adding user manjaro to group uucp
    [manjaro@mycomp work]$ groups manjaro
    lp wheel uucp network video audio storage users
    [manjaro@mycomp work]$ ls -l /dev/ttyUSB0
    crw-rw---- 1 root uucp 188, 0 23.06.2014 21:32 /dev/ttyUSB0
    [manjaro@mycomp work]$ lpc21isp firmware.hex /dev/ttyUSB0 19200 11059
    lpc21isp version 1.97
    File firmware.hex:
    loaded...
    Start Address = 0x00004F9C
    converted to binary format...
    image size : 30304
    Image size : 30304
    Can't open COM-Port /dev/ttyUSB0 ! (Error: 13d (0xD))
    But when I try as root, it works:
    [manjaro@mycomp work]$ sudo lpc21isp firmware.hex /dev/ttyUSB0 19200 11059
    [sudo] password for manjaro:
    lpc21isp version 1.97
    File firmware.hex:
    loaded...
    Start Address = 0x00004F9C
    converted to binary format...
    image size : 30304
    Image size : 30304
    Synchronizing (ESC to abort)..... OK
    Read bootcode version: 13
    Download Finished... taking 27 seconds
    Now launching the brand new code
    Do you have any idea what I am doing wrong?
    Last edited by manjaro (2014-06-23 19:57:40)

  • How to set proxy server name in iasenv.ksh?

    How to set the proxy server host and port in the JAVA_ARGS list in the iasenv.ksh file? IAS 6.5 is the server being used.

    hi,
    Below is what needs to be done.
    1. Edit the variable JAVA_ARGS in iasenv.ksh to include the -Dhttp.proxyHost. For example, the JAVA_ARGS looks like this : JAVA_ARGS="-Xss512k -Xms64m -Xmx64m -Dhttp.proxyHost=proxy.myhost.com -Dhttp.proxyPort=8080"
    2. This JAVA_ARGS is the one under the kjs script settings. You will find this below the comment ## Set all user level JVM flags for KJS here.
    3. Now stop and restart the application server.
    4. Any new URL connections from the servlets/applications within the appserver will now go through the proxy server.
    I have tested this on iAS6.0 SP3. But this should work in 6.5 too. Please let me know if this helps.
    Cheers,
    Vasanth

  • How to set a Static IP Address to a HP Photosmart Plus B209a-m?

    Like it says up in the subject, I need to know how to do this. I tried to do it by typing in the IP of the printer into a browser, but then I lost connectivity with it all together. If someone could help, that would be amazing!!
    Thanks in advance!
    TechGirl88

    First, let's see if your printer is actually connected to your network.
    - Print a Network Config Page from the front of the printer. Note the printer's IP address.  If it is 0.0.0.0 or 169.254.x.x then the printer is not connected.  You will have to re-connect it using the same method you did originally.
    Now that it is connected, this is how to set a static IP:
    - Type that IP address into a browser to reveal the printer's internal settings. (if this does not work, you likely have a firewall and/or security system blocking it - please advise).
    - Choose the Networking tab, then Wireless along the left side, then the IPv4 tab.
    - On this screen you want to set a Manual IP. You need to set an IP address outside the range that the router automatically sets (called the DHCP range). If you know what that is, set an IP outside that range but no higher than 254 (the last number in the address). If you do not know this, enter the current IP address.
    - Use 255.255.255.0 for the subnet (unless you know it is different, if so, use that)
    - Leave the gateway and DNS blank. Click 'Apply'
    Now, shut down the router and printer, start the router, wait, then start the printer.
    After this you may need to redo 'Add a Printer' using the new IP address.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • How to set a static IP on wrt1900ac

    I am trying to set some static ip addresses on my new router  I go to the advanced routing section and put in the info but when i get to the gateway it says the specified gateway ip is invalid.

    If the ISP modem has a built in router, it's best to bridge the modem. Having 2 routers on the same line can cause connection problems: Link>http://www.practicallynetworked.com/networking/fixing_double_nat.htm and http://computer.howstuffworks.com/nat.htm If the modem can't be bridged then see if the modem has a DMZ option and input the IP address the router gets from the modem and put that into the modems DMZ. Also check the routers DHCP IP address maybe conflicting with the ISP modems IP address of 192.168.1.1. Check to see if this is the same on the ISP modem, and if modem can't be bridged, change the Linksys router to 192.168.0.1 or .0.254. If your trying to set Static IPs on the LAN side then Static IPs are configured on each devices thats connected. This can be done for devices lilke printers, controllers cameras and NAS. This should be done outside of the routers default DHCP IP address pool. Other devcies like PCs phones, Pads or game consoles that need router management, then it's recommended to set a Reserved IP address ON the router for these devcies.  For WAN side or ISP side Static IP services:http://community.linksys.com/t5/Wireless-Routers/WRT1900AC-WPA2-on-Guest-Network-and-Setting-Domain-Name/m-p/960821#M305633 

Maybe you are looking for

  • Alt+mnemonic key is not working properly for Menu Items

    Assume there are two menus , File Menu with mnemonic Alt+F and Save Menu with mnemonic Alt+S. File Menu contains the menu items like PageSetup with Mnemonic S. Save menu has the menu item Properties with Mnemonic P. Pressing Alt+F opens the File Menu

  • Lumia 920: Internet Sharing no longer works after...

    I have a Lumia 920 that's a developer build that was provided at Microsoft Build.  After the latest OS update, I am no longer able to start Internet Sharing.  I receive a notification that I need to upgrade to a plan that supports mobile hotspot.  I

  • Ship to party and Delivery address Different?

    The requirement is that the Ship to party address be different than the delivery address. Options i have thought about is 1) Maintain the ref address in TEXT. 2) Maintain a separate partner function. Please give suggestions as to how can we maintain

  • Display html code in a variable of a pojo failed by JSTL

    hai, my pojo contains the following code: Class Pojo{ String htmlFormat="<a href='someurl'>click</a>";  setters and getters} in my jsp displaying this pojo variable <c:out value="${htmlFormat}" /> is displaying it as text but the content is of type h

  • Tomcat to Oracle

    Hi all !!! I use Tomcat 4.0.3. Where do I have to put classes12.zip if I want to connect to oracle. I was trying to write in classpath in catalina.bat, but tomcat does not see that. I've made classes12.jar from classes12.zip and put in lib, but it do