How to config for DSL !!!

I am using DSL with the verizon.
I just install 5.8 x86 on my PC.
But could not browse on the Web.
I need to know whatelse I need to do ?
Do I have to Configure DHCP ?
How can I do it ?
Please advise.
Thanks again.
From
Pranav

Your router should be the dhcp server for your internal network or you can just give your solaris machine an address on the same 192.168.2 network. You will have to configure the external interface of your router for dhcp so it will receive an ip, dns and gateway addresses for the outside world (internet) - that is if you were not assigned a set ip address. What type of router is it?
Lee

Similar Messages

  • Solaris 8 config for DSL

    I want to reconfigure my standalone SunBlade100 for DSL service. The OS is Solaris 8 10/01, and is currently configured for dial-up access to an ISP.
    I've edited the etc/hosts, etc/resolve.conf, and etc/nsswitch.conf files, and I created an etc/defaultrouter file containing the gateway IP address.
    Sun PPPD 4.0 is installed, and includes PPPoE.
    My question is what else do I need to do in order to complete the configuration?
    Are there any good references for Solaris DSL configuration?
    Thanks in advance?

    Hello,
    I supose that its an errata but its /etc/resolv.conf and not /etc/resolve.conf.
    Your access internet via a router. I don�t know about DSL but if it�s a standar router you shoudn�t have to configure pppd, just a normal network access with the routing and the naming service properly configured.
    If you edit /etc/defaultrouter, the changes will take effect on the next reboot, so maybe you�ll have to add a route manually if you cannot shutdown the machine:
    route add default your_router_ip
    This way you should ping your router, if the routing is properly configured your dns server too (specifying it�s IP) and finally if the naming service is well configured, any Full Qualyfied Domainame on internet.
    Try this and post the results. Bye,
    Joseba M. Iturbe
    P.D: Read another similar post on this disscussion forum.

  • How to config for only "View Latest Instance" is available in infoview ?

    Hi,
    The BO version is  "BusinessObjects Enterprise 12.0"
    The purpose is  in infoview,  for each report user can see, only the feature "View Latest Instance"  is available.
    I have tried to set the access right, but at least, the user has below features:
    View
    Properties
    View Latest Instance
    History
    New
    Add
    Organize
    Is there any idea to do remove the "View" feature but keep others there ?
    Thanks & regards,
    Forest
    Edited by: Forest lin on Dec 5, 2008 12:06 PM

    Hi Forest
    I would like to make following suggestion :
    The option "View" and can not be removed. It is the primary right to access the Report.
    If there is no right "View Objects", Report will not appear in the desired folder.
    It is important to have "View Objects" right which will make "View" appear. Once this right is present
    rest of the situation for Report can be imagined.
    Regards,
    Hrishikesh

  • How can config for SNP Aggregate only aggregate demand not stock on hand?

    Dear SCM Expert,
    Now we want the system aggregate only demand and not aggregate stock on hand ( Stardard system aggregate both of them) so what i have to do?
    thanks so much.

    Hi
    The stock on hand is a calculated key figure. It is calculated based on macros. So you have to write a macro or you can copy the stock balance macro logic from the standard detailed book. In the detailed book no aggregation is done. But to avoid aggregating stock on hand you have to put logic in the macro
    Thanks
    Aparna

  • How to config sg300 28 for vlan

    i purchased  300-28
    how it config for stp and trunk

    Hi Jig, RSTP is on by default with default priority 32768 and port fast auto negotiates.
    To create a vlan
    configure terminal
    vlan database
    vlan 2
    exit
    To configure a trunk
    configure terminal
    interface gi1
    switchport mode trunk
    To add a vlan to the trunk as a tag memeber, making the port 1 untag, 2 tag
    configure terminal
    interface gi1
    switchport trunk allowed vlan add 2
    To change the native vlan of a port
    configure terminal
    interface gi1
    switchport trunk native vlan 2
    -Tom
    Please mark answered for helpful posts

  • How to config the AS5300 support this???

    now,we have one AS5300 with 8 CE1 port. want use the port to calling and called bri isdn and normal modem,otherwise use callback for remote access.how to config for support this?can give me some example.this.
    ps>> the ce1 now is connect the isp by CE1(pri 30B+D).

    Hi,
    In SE38(ur program)--> menubar GOTO>TRANSLATION->provide SOURCE and TARGET LANGUAGE->write the texts in desired language---
    I think it may help you.
    Thanks,

  • How to use the same services-config for the local and remote servers.

    My flex project works fine using the below but when I upload my flash file to the server I doesn't work, all the relative paths and files are the same execpt the remote one is a linux server.
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <service id="amfphp-flashremoting-service"
                class="flex.messaging.services.RemotingService"
                messageTypes="flex.messaging.messages.RemotingMessage">
                <destination id="amfphp">
                    <channels>
                        <channel ref="my-amfphp"/>
                    </channels>
                    <properties>
                        <source>*</source>
                    </properties>
                </destination>
            </service>
        </services>
        <channels>
        <channel-definition id="my-amfphp" class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
        </channel-definition>
        </channels>
    </services-config>
    I think the problem  is the line
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
    but I'm not sure how to use the same services-config for the local and remote servers.

    paul.williams wrote:
    You are confusing "served from a web-server" with "compiled on a web-server". Served from a web-server means you are downloading a file from the web-server, it does not necessarily mean that the files has been generated / compiled on the server.
    The server.name and server.port tokens are replaced at runtime (ie. on the client when the swf has been downloaded and is running) not compile time (ie. while mxmlc / ant / wet-tier compiler is running). You do not need to compile on the server to take advantage of this.
    Hi Paul,
    In Flex, there is feature that lets developer to put all service-config.xml file configuration information into swf file. with
    -services=path/to/services-config.xml
    IF
    services-config.xml
    have tokens in it and user have not specified additional
    -context-root
    and this swf file is not served from web-app-server (like tomcat for example) than it will not work,
    Flash player have no possible way to replace token values of service-config.xml file durring runtime if that service-config.xml file have been baked into swf file during compilation,
    for example during development you can launch your swf file from your browser with file// protocol and still be able to access blazeDS services if
    -services=path/to/services-config.xml
    have been specified durring compilation.
    I dont know any better way to exmplain this, but in summary there is two places that you can tell swf  about service confogiration,
    1) pass -services=path/to/services-config.xml  parameter to compiler this way you tell swf file up front about all that good stuff,
    or 2) you put that file on the webserver( in this case, yes you should have replacement tokens in that file) and they will be repaced at runtime .

  • How to configure one dsl connection and one public ip in cisco router and map to one interface for using exchange server

    how to configure one dsl connection and one public ip in cisco router and map to one interface for using exchange server

    Hi ,
     Have you got any additional public IP Address from your service provider , If yes on router you can have static route for those additional IP Address pointing to your ASA  outside interface . 
    Accordingly you can configure NAT 
    HTH
    Sandy . 

  • How to config the user and role in the runtime for executing in the GP?....

    Hi Experts,
    I am learning GP(Guided processor)according the document
    http://help.sap.com/saphelp_nw70/helpdata/en/44/0d5b8f250d5cfae10000000a155369/frameset.htmneed.
    I meet two question when I learn the GP.
    The first:
    This document don't tell me how to config the member framework of the company.  After I design the GP, I have to config the user and role in the runtime for executing. I hope I can use the WDA(webdynpro for java or webdynpro for java) to implement to config the user for executing in the runtime. Thus, the customer don't config the user when runing the GP. But I don't know how to do this.
    I need a document guide step by step to tell me how to do this.
    The second:
    If I use the workflow in the GP, I have to install and config the NWDI(Netweaver Development Infrastructure). Now I have installed the NWDI, but I don't know config it so that I can download it to my machine for develop the workfolw in the GP.
    Do you give me some hints? Thanks a lot.
    Thank a lot.
    Best regards,
    tao

    Hi, Mithu,
    Thanks a lot for your help in advance.
    I have carefully read the document: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6b66d7ea-0c01-0010-14af-b3ee523210b5.
    Now, I think I have to set the processor of every actions in every process if I use the GP for processing the workflow.
    I am better to hope that I can set the processor to the role for every actions in every process in the runtime through get the organizational structure in the WDA(webdynpro for java or webdynpro for java). Thus, the customer don't set the processor to the role for every action in every process when runing in the GP.   I don't know how to do this. 
    Whether the function is not supported in the GP? If so, I have to config two organizational structure: in the R/3 and in the Portal. I don't think our customer don't receipt this solution.
    Do you give me some hints? Thanks a lot.  My email: [email protected]
    Thanks again.
    Thanks & Regards,
    Tao

  • How  to config receiver http adapter for HTTP POST without XML tags ??

    Hi All,
    Can you please provide some infornation on How  to config receiver http adapter for HTTP POST (Request) without XML tags ?? Our receiving product doesn't support XML formats.
    Is there any option to bypass server authentication on the XI?
    If anybody has the same experience or know how to please provide inputs.
    Thanx
    Navin

    Hi,
    you can use xsl mapping for this in which u xtract
    the contents only but not the xml tag.
    Ranjit

  • How to config a shared cache for multiple environments with C API

    How to config a shared cache for multiple environments with C API?  Just like Java edition. Chapter 2. Database Environments
    I want to open large number of databases, at least 10,000. But as the counts of databases opened increase, the db->open operation become very slow. It almost cost 2 hours to 10,000 databases.
    So I try to distribute these databases to multiple environments ( for example, 5 envs ). And in order to improve the efficient of memory use, I want to share cache between envs.

    Hi,
    It is not clear what you meaning about multiple environments. Do you mean these environments are in different directories or  in the same directory ? If you mean environments in different dirs share the same cache, it is interesting why you need that.
    If you do not use DB_PRIVATE to open the environment, the created cache will be on disk, in the environment directory, so it can be shared by multiple processes and multiple threads. Currently, the cache file is in the environment directory, and we do not support specifying a separate directory for cache only.
    Regards,
    Oracle Berkeley DB.

  • How to config CRM and BW for IIS SOluction Database

    Dear Sir,
    We upgrade CRM2.0c to CRM 5.0- and solution Dtabase is not working, I don't know how to config, some person said that it need to config from CRM and BW for this features. Please kindly advise.
    Thank you and best regards,
    Vimo

    Hi,
    It is not clear what you meaning about multiple environments. Do you mean these environments are in different directories or  in the same directory ? If you mean environments in different dirs share the same cache, it is interesting why you need that.
    If you do not use DB_PRIVATE to open the environment, the created cache will be on disk, in the environment directory, so it can be shared by multiple processes and multiple threads. Currently, the cache file is in the environment directory, and we do not support specifying a separate directory for cache only.
    Regards,
    Oracle Berkeley DB.

  • How to install drivers for ati radeon 3200?and how to config xorg.co ?

    how to install drivers for ati radeon 3200?and how to config xorg.conf?

    mawch wrote:how to install drivers for ati radeon 3200?and how to config xorg.conf?
    Hello
    I am using ati hd 3200 which is integrated with my motherboard. If you are using arch you can download & install through pacman. The package is named like catalyst*. You can install them by issuing as root user
    #pacman -Sy
    #pacman -S -l | grep -i catalyst
    #pacman -S catalyst catalyst-utils
    After installation reboot your machine in runlevel 1. (single mode).  Ensure "fglrx" module is loaded correctly using
    #lsmod | grep -i fglrx
    If the resultant output have "fglrx" part  the module is loaded correctly. The next step is to create a working /etc/X11/xorg.conf. Backup your current xorg.conf if needed.
    #cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bkup
    Then issue
    #aticonfig --initial --input=/etc/X11/xorg.conf
    This will create a new xorg.conf file. Now we can test our confign.
    #telinit 3
    I am using runlevel 3 to avoid graphic messup!!
    issue
    #gdm
    If you graphical login screen works correctly there is nothing to do more except adjust your monitor resoloution as you like.
    To know your ati driver is working correctly issue as root
    #fgl_glxgears
    If gears are rolling happily it seems correct. You can also know more about installed ati driver
    #fglrxinfo
    Now the installed driver version is in the output 
    If there is any problem try following
    ##### Soloutions to solve various display problems using ATI Catalyst Drivers in Linux #####
    yes video playback is choppy until i ran :-
    sudo aticonfig --overlay-type=Xv
    Try adding the following to the 'Device' section in /etc/X11/xorg.conf
    Option "TexturedVideo" "true"
    ### This is a half solution for mythtv problems. Run mythtv in window (no full screen) If You have a screen resolution of 1024x768 try the command;
    mythfrontend --geometry 800x600
    Append the "Device" Section of /etc/X11/xorg.conf file as follows;
    Section "Device"
    Identifier "Videocard0"
    Driver "fglrx"
    Option "OpenGLOverlay" "off"
    Option "VideoOverlay" "on"
    Option "TexturedVideo" "on"
    Option "TexturedVideoSync" "on"
    Option "Capabilities" "0x00000800"
    BusID "PCI:1:0:0"
    EndSection
    Add following in the .bashrc of each user or /etc/bashrc file* Most Effective In My Case!!
    export LIBGL_ALWAYS_INDIRECT=true
    ####### Arch Linux - Add the "nopat" option to the /boot/grub/menu.lst or /boot/grub/grub.conf
    ####### as in the following example
    title  Archlinux Ice Kernel
    root   (hd0,1)
    kernel /boot/vmlinuz26-ice root=/dev/sda2 ro resume=/dev/sda3 quiet splash nopat
    initrd /boot/kernel26-ice.img
    NB: REGULAR DISCLAIMER IS ALSO APPLICABLE TO THE ABOVE MATTER; USE IT AT YOUR OWN RISK !!!  ALL THE ABOVE INFORMATION IS COLLECTED FROM VARIOUS POSTINGS IN THE FORUM AND FROM MY OWN EXPERIENCE
    Wish U good luck
    mvdvarrier

  • How to config JSSE for UDDI4J???

    Hi, i am using uddi4j to access uddi registries. As you know, when you use the publish api, it use the https connection.so we need to do some configurations for JSSE. I have downloaded JSSE,but i just don't know how to config it in the java.security file.please help,thanks:)

    If you are using java 1.4 > JSSE is now included in the release and you shouldn't have to do anything.
    If you are using an older JVM, you can also add the jsse.jar file into your classpath and register the appropriate provider implementation class:
    System.setProperty("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Or try googling the subject and look at links similar to the following:
    http://www-128.ibm.com/developerworks/webservices/library/ws-uddi4j2.html
    Cheers
    Todd

  • How to config CDM for user Authorization

    Hi Sir,
    Can you tell me how to config CDM 4630 for user authorization with different privilege by using radius server
    Regards

    Here is a link on configuring user authentication on acns.
    http://www.cisco.com/en/US/products/sw/conntsw/ps491/products_configuration_guide_chapter09186a008008123f.html
    Not sure if there is one available for authorization too.

Maybe you are looking for

  • TS1286 why when i connect my ipod touch to my PC it does not show under devices and how can i download music from my itunes library

    I am trying to download music from my itunes library onto my ipod touch, however, when i click on 'devices' it is shaded out and i cannot click on it, how can i download my music

  • Time Machine Permissions Problem

    I have just tried the following on a completely new system running Mountain Lion: 1. Installed a new Time Capsule. 2. Selected Time Machine and told it to complete a backup to that Time Capsule (using my user name, which has admin privlidges).  The b

  • Sales module-Dealer wise

    Hi All, In Sales module- Dealer wise Report. Ie. Related to Particular Dealer, Howmany Orders he have done, how many pending and closed. it Possible by Pld or Xl reports ,plz tell me Regards, nagababu

  • BAPI function modules for F-30(Post with clearing)

    Hello, Is there any BAPI FM that can be used for F-30? I am trying to program a BDC for this transaction.  But it turns out very difficult since there are a few radio buttons and also it's hard to determine the line number of an open invoice. Thanks,

  • Apache + OWA perl interface configuration

    hi ! does anyone of you folks have managed to run the ORACLE authentication over Apache OWA Perl module ? i only have managed to run a PLSQL "helloworld" procedure when i supplied username and password in the httpd.conf according to the README attach