IP problem bridged/transparent WRT160N

Hello

I use a netopia 2240N and a linksys WRT160N (rev1). For many reasons, I want to limit the use of netopia 2240N so I tried a few solutions:

First

Netopia with transparent IP configuration and sending IP WRT with DHCP configuration.  Without result

When I do the same thing using the static IP setting on WRT my IP settings are denied (IP and GW are not on the same network):

IP: 213.X.X.X (where X is valid but I don't want to publish publicly)

MASK: 255.0.0.0

GW: 64.Y.Y... Y (my valid provider gateway).

I agree they are not on the same network but those defining work perfectly with my netopia router.

Second

I have tried PPPOE bridge configuatio. I enabled the functionality of bridge PPPOE on my netopia router. And PPPOE is used as my setting IP WRT, valid user and password. When WRT try to connect I get an error message "unable to get valid IP address.

can someone make me one of this setting work.

In fact I use NAT: netopia-> WRT-> lan I want to avoid.

I use the latest released firmware for the two facilities.

Thank you for reading.

I'm sorry for my approximate English use.

After changing the bridge setting and reboot, it works perfectly hour

Tags: Linksys Routers

Similar Questions

  • Problems of Mega WRT160N

    I have a problem with new router I bought. The Wrt160N. When I put in place, it has been constantly disconnect and speeds have been slow as in 1 Mbps. I looked through this forum and tried almost everything but no progress. Also sometimes I can not connect at all. Can I do to solve this problem?

    Connected devices:

    Desktop with Windows 7 64 bit

    Laptop with Windows 7 64 bit

    Laptop with Windows XP 32 bit

    Desktop computer with Windows XP 32 bit

    2 Ipod Touch

    OK after a call from 50 minutes to Linksys, I finally thought to it. I went through everything and then ultimately just had to Flash the firmware. Now its all good.

  • problem with transparent views

    my application currently charges multiple instances of a class (pageView) off the screen as well as triggered once it can simulate pages. the page mode is basically a such as the sprite class which extends and composed of containers with labels and images.  im having the problem is that when I tween a new page over the last page is transparent and you can see the last page through a new. I tried to create a rectangle and fill it with a white background, but that failed because it covered everything on the screen.  also tried to adjust the alpha of my main container to 1 and also did not work. can someone help me understand this.

    Thank you

    NR

    If the page extends sprite, there a graphical object, it allows to create a strong bg.

    Inside of the manufacturer pageView, or setSize() method:

    this.graphics.beginFill (0 x 0, 1);

    this.graphics.drawRect (0, 0, viewWidth, viewHeight);

    this.graphics.endFill ();

    Where viewWidth and viewHeight are the desired size of your page.

  • Having a problem with transparency...

    So, I'm learning from YouTube tutorials draw this:

    Capture3.JPG

    The problem is that I never get there.

    What I did with my own shapes to draw. I put the gradient of colors as well.

    Capture.JPG

    The next step is to change the 'transparency' in "Multiply" and then change the color in shades of gray in order to realize the shadows as in the first photo above.

    However, what I do is the image below:

    Capture2.JPG

    That this problem has to do with the transparency mode? If there is someone out there who could help me, I would really appreciate it.

    I found my problem.

    I just had to duplicate my layer and 'Multiply' conduct on this subject.

    It was simple, but thank you anyway for your help.

  • Problems with transparent background images

    Hello!

    I have a transparent background (in PNG format) image and when I import it in first, is displayed with a black background. How to solve this problem? Could you help me, please?

    Transparency in the dark shows.

    Put an image under the image in the timeline to check if they have really no transparency.

  • Problem making transparent JTableHeader

    Hello

    I have a problem with JTables, especially the JTableHeader. I can't make it transparent. I have a JTable placed over a panel with a color gradient, and I want the table to be transparent, so the gradient will be visible through the contents of the table.

    I used some setOpaque (false) on the JTable and its header, and I made a transparent TableCellRenderer which I use for the table cells and its header. It also works for the content area of the table, the header always gets painted as a full rectangle. I even tried the substitution of the appearance to the JTable, JTableHeader, but nothing that I don't seem to have any effect.

    When Googling the problem I find a lot of information about JTable transparent, but I can't seem to find any relevant information on the header of the table in particular.

    Heres a NBS to better illustrate what I've tried so far (no changes are made to the appearance in this example):

    import java.awt.Color;
    import java.awt.Component;
    import java.awt.GradientPaint;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.SwingConstants;
    import javax.swing.border.EmptyBorder;
    import javax.swing.table.DefaultTableColumnModel;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.JTableHeader;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    
    public class Main {
    
        private static TransparentRenderer transparentCellRenderer = new TransparentRenderer();
    
        public static void main(String[] args) {
    
            JFrame frame = new JFrame();
            frame.setSize(800, 600);
    
            //Creating the content pane with a gradient painted background
            JPanel gradientBackgroundPanel = new JPanel() {
                @Override
                public void paintComponent(Graphics g) {
                    super.paintComponent(g);
                    Graphics2D g2d = (Graphics2D) g;
                    g2d.setPaint(new GradientPaint(0f, 0f, Color.green, 0f, getHeight(), Color.blue));
                    g2d.fillRect(0, 0, getWidth(), getHeight());
                }
            };
            frame.setContentPane(gradientBackgroundPanel);
    
            //Initializing the table
            JTable table = createTable();
    
            //Adding the table to a transparent scroll pane
            JScrollPane scrollPane = new JScrollPane(table);
            scrollPane.setBorder(new EmptyBorder(10, 10, 10, 10));
            scrollPane.setOpaque(false);
            scrollPane.getViewport().setOpaque(false);
    
            //Adding the scroll pane to the content pane and setting the frame visible
            frame.getContentPane().add(scrollPane);
            frame.setVisible(true);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        }
    
        private static JTable createTable() {
    
            //Creating the table column model with a single column using a transparent renderer
            DefaultTableColumnModel columnModel = new DefaultTableColumnModel();
            TableColumn column = new TableColumn();
            column.setHeaderValue("Header");
            column.setCellRenderer(transparentCellRenderer);
            columnModel.addColumn(column);
    
            //Creating the table header with a transparent renderer
            JTableHeader tableHeader = new JTableHeader(columnModel);
            tableHeader.setDefaultRenderer(transparentCellRenderer);
            
            //Creating a table model
            DefaultTableModel tableModel = createTableModel();
    
            //Creating the JTable
            JTable table = new JTable(tableModel);
            table.setTableHeader(tableHeader);
            table.setColumnModel(columnModel);
            table.setShowGrid(false);
            table.setRowHeight(40);
    
            //Making both the table and the table header transparent
            table.setOpaque(false);
            tableHeader.setOpaque(false);
    
            return table;
        }
    
        protected static DefaultTableModel createTableModel() {
            DefaultTableModel tableModel = new DefaultTableModel(5, 1);
            tableModel.setValueAt("Entry 1", 0, 0);
            tableModel.setValueAt("Entry 2", 1, 0);
            tableModel.setValueAt("Entry 3", 2, 0);
            tableModel.setValueAt("Entry 4", 3, 0);
            tableModel.setValueAt("Entry 5", 4, 0);
            return tableModel;
        }
    
        private static class TransparentRenderer extends JLabel implements TableCellRenderer {
    
            public TransparentRenderer() {
                setHorizontalAlignment(SwingConstants.CENTER);
                setOpaque(false);
            }
    
            @Override
            public Component getTableCellRendererComponent(JTable table, Object value,
                    boolean isSelected, boolean hasFocus, int row, int column) {
                setText(value.toString());
                return this;
            }
        }
    }
    Any help would be much appreciated.

    Hello
    Try this code:

    scrollPane.setColumnHeader(new JViewport());
    scrollPane.getColumnHeader().setOpaque(false);
    
  • Vmware server 2.0 problem bridge host Ubuntu Windows xp reviews

    Hello

    I have a problem of bridge on my ubuntu with Vmware server 2.0.

    The guest is using windows xp with the flexible adapter.

    The network of the client works ok, but when I try to access a Web server in the comments, it cannot connect.

    Every incoming request is denied.

    Does anyone have a solution for this problem?

    First install the VMware tools inside the prompt and change "vlance' to 'vmxnet. Otherwise, you have only 10 Mbit/s.

    Make sure you use truly fulfilled andf not NAT. When you use NAT the guest can go outside, but it is not accessible from outside (if you had posted "ifconfig" and "ipconfig" I could tell you directly).

    Looks like there is still a firewall somewhere between the two. What oyu protection virzus use? Some of them, like TrendMicro, have their own firewall.

    The host cannot ping the prompt?

    AWo
    VCP / VMware vEXPERT 2009

    \[:o]===\[o:]

    = You want to have this ad as a ringtone on your mobile phone? =

    = Send 'Assignment' to 911 for only $999999,99! =

    Published by AWo

  • Problems of transparency when sending work

    Hello, I have a strange problem with one of the artwork packaging that I try to send to China for printing. I sent other files to package with the exact same design and flashing (but different products) and they have all been soundproofed back very well, but for some reason any printers in China say that particular file opens as below, but when I open it - looks like it is to me.

    Is there something I need to do my dissertation for her to open properly on their end? I'll send out hundreds of these package files, and so would not continue to run on this problem.

    Thank you

    As you can see where I have subtle 'blinks' on the right pair, they changed to massive 100% ones on China.

    The banner at the top also has subtle 20% links while they went to 100% on China.

    Confused!

    * Click on the image to enlarge

    image.jpg

    Its sorted OK.

    I sent packing in China with faulty transparent elements "flattened" and now they are open as it should be in China.

    In case someone else is having the same questions:

    I selected the flashes / lines and went to the object - flatten transparency - 300 DPI and checked the box to maintain transparency.

    Thank you

  • Problem with transparency and gradient in several forms

    preview.jpg

    Hello guys,.

    I have problem very stange (am have been strugling with four hours), I'm desperate and I hope I'll find help here. Thanks in advance...

    Here's the deal... I created this shape in photoshop (see the image attached). It's 6 circles with equal to 47 alpha / then I merged the circles and applied degraded (#f7c105 to #f4480b) and the angle set - 145

    Now, I try to recreate this shape in Illustrator... As you can see the image it sympathy ' e close but not the same thing. I do not know how to merge circles but to preserve transparency and then set the gradient.

    If someone has an idea, I'll be very grateful.

    Thank you.

    Yet a similar but variant method if you have 4 CS and later versions.

    http://www.wadezimmerman.com/videos/TransparentGradientCircles2.mov

    In addition if you adjust the Annotator degraded, then you can change the way in which the gradient fades as well.

  • Major problem with transparency using Flash Player 11 on IE 9 with Intel HD graphics card

    There are some problems with Flash Player 11,0,1,152 with Intel HD graphics card when using Internet Explorer 9 with hardware acceleration enabled.

    Transparencies are not working!

    They appear just like the black areas on the page when wmode = "transparent".

    See my bug for details, test URL and screenshots.

    I logged a bug:

    https://bugs.Adobe.com/jira/browse/ASC-4370

    I've also seen a few similar posts:

    http://forums.Adobe.com/message/3992938

    http://forums.Adobe.com/message/3992736

    http://forums.Adobe.com/message/3992735

    To work around this problem, you can disable hardware acceleration in the settings of IE9 to prevent this, but performance is terrible and this is not a solution.

    Can someone from Adobe please tell me when this is likely to be resolved - this is a pretty catestrophic bug!

    Everyone knows this?

    Thank you

    Luke

    Transparency bug has been fixed in 11.1.102.55 to today release so please check if your problem still exists or resolved. It is useful if you update result on above bugs.

  • Problems of transparency with different file formats? Photo included

    I designed a logo in illustrator. Part of the logo is a vector image, I created. I am recording this vector image in eps or tiff, must be placed in an inDesign document. However, whenever I try this, a weird white box appears behind her. I double everything in the illustrator file checked and there is no separate white object or an involuntary white fill any where. It is perfectly clean. When you save in jpg or png, it seems, it's just with the eps or tif.

    This is what it looks like:

    Screen shot 2011-06-10 at 5.11.53 PM.png

    This is a screenshot of a PDF (made through indesign using an eps). I have it? haha. I used a black background make it just easier to see the white box. Basically, it keeps happening everytime I use an eps or tiff image. Why is this happening? I tried to set the transparency to high resolution when the eps as well. The only thing I can think of is maybe a problem with the shadow of the Crescent? I know illustrator can be weird with gradients and shadows.

    I have to resort using a different file type, but I would have preferred to use eps or tiff, as this is part of an identity system used in various sizes.

    If anyone has any ideas, I would be very happy!

    Simply place the file IN InDesign.

    An EPS may not contain transparency and always have white box.

  • Fixing the problems of transparency

    Hello

    I was wondering if anyone would be able to help me with a problem I have a document that I am creating.

    I have images that I created using Photoshop 7 which are images very simple with a transparent background.  I then place these images in my file in Illustrator CS3.

    My file looks good and when I print my file on my ink jet printer all right.  But when I print on my printer OKI C801 (as I do) I get a box around my image exactly where the transparent areas should be.

    No matter what I try I can't get rid of this background.  I created a lot of different images in the same way without any problem, but this one is causing me all kinds of problems for some reason any.  I even tried to recreate from scratch and get the same problem each time.  I also tried saving the file as a PNG but the same thing happens.  Last resort I tried to use different images, but once again this box appear from nowhere on my impression!

    The illustration below shows what should look like the file and what comes out of my printer!

    Untitled-2 copy.jpg

    Does anyone have any ideas how can I fix?

    Thanks in advance!

    First check the settings of your printer driver, if the OKI applies a sort of color adjustment. Then see here:

    http://InDesignSecrets.com/eliminating-YDB-yucky-discolored-box-syndrome.php

  • Problem of transparency for the half-layer Photoshop CS4

    Hello, my name is Rob. I know this may sound weird, I'm still new with CS4, I use Photoshop CS for a few years now and just passed to CS4 a few days ago, but I have a problem. When I do a new "part" (when you go File-> New) the next thing I get is a transparent layer that is cut in half on the diagonal. I don't know if this is a feature of CS4, adjustment or a bug, or perhaps something that has turned during the installation. I need help.

    I've included a few photos to allow you to take a look.

    Untitled.jpg

    (If I save the image, it is completely visible. I find that very annoying because I don't know where should I put the text/images.)

    (Sorry for noobish image, just wanted to show you my problem.)

    It is a video card driver problem.

    CS4 version 11.0.1 update and then update your video drivers.

    If it does not turn off OpenGL.  If this works it says that your graphics card/driver is not compatible.

  • Big problem with transparent export

    Hello everyone,

    recently, I have big problem in video export Transparent...


    When I try to export this type of video, after that effect may not export properly and background Transparent rendered as solid black...

    I do everything you think... There is no downside to option... Alpha chanel returned with video mov (such as export settings)

    I changed the video format from mov to Elodie image sequence and problem solved temporarily...

    but when I try to make a project with proxy, the problem comes back again...

    so here's my question... What is this problem and how can I solve this problem?


    Sorry for the bad English! English is my second language and,

    In the Module to make the output queue, you have the possibility to channel RGB instead of RGB + Alpha, the value which is the right option to include an alpha channel in a video file. Once that you set it to RGB + Alpha, the depth adjustment changes automatically to Millions of colors +.

    The file > export path is not a recommended method for the export of video files. In this case, you set the depth to colours earned +, but transparency isn't there. Use the rendering queue.

  • Problem of transparency with a compass 2D plot

    Hello

    I use a compass 2D field to view the joint angle. I have the desire to have the plot area and the transparent border of the chart, the plots are so over a picture on my wall and nothing else is visible. So that I can put it in the editor control and with the paint bucket in my VI tool. When I save and reload the vi transparency has been removed. Does anyone have a solution for this? I am running LV10.

    I'm sorry. There is no such node property in LV2010. The only work around is to open the next VI and make transparent controls framework using the coloring tool. That VI gives the original looking for the compass. Of workaround only affects the control of Compass on your machine.

    C:\Program Files (x 86) \National Instruments\LabVIEW 2010\vi.lib\Math Plots\2D Math Plots\2D Compass\2D compass XCtrl\Facade.vi

Maybe you are looking for

  • Can not get music on very old contact

    I have what I think, maybe this is the first version of touch. Model: MA627LL version: 3.1.3 (7E18) It still works in that I can listen to music, see photos etc. I can also connect to the wifi.  When I try to open iTunes top, he goes to the net, but

  • YouTube app does not work

    HelloI bought a Toshiba JournE. Have updated. But youtube takes 30 min to load. After the loading of the video does not work in all cases

  • Example rate vs clock rate cRIO

    I try to get my head around the difference in sample rate vs clock rate in the cRIO so I can explain it correctly my engineers in optics. I have a FPGA code that is just the Basic with e/s example.  Modules 1, 2 and 3 are NOR-9201 with a sampling fre

  • DeskJet F4140: Deskjet F4140 stopped working after paper jam

    I had a paper jam. Folowwing HP statement, I removed the back and get rid of the jam. New, everything is clear. The printer lights up as he wants to work, but will not go through the print operation. Thank you

  • Creation of network with accounts

    I want to create a network with computers running Windows operating systems. I have a wiorkgroup. Is it possible to do where I can create user accounts that can be connected through all the computers on the network? In my school, they have where they