<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

<channel>
<title>HughesNet Satellite forum - dslreports.com community</title>
<link>http://www.dslreports.com/forum/sat</link>
<description>HughesNet Satellite forum current topics</description>
<language>en</language>
<copyright>Copyright 2007, dslreports.com</copyright>
<pubDate>Fri, 25 Jul 2008 23:18:07 EDT</pubDate>
<lastBuildDate>Fri, 25 Jul 2008 23:18:07 EDT</lastBuildDate>

<image>
<title>dslreports.com</title>
<url>http://i.dslr.net/bbrdisc1.gif</url>
<link>http://www.dslreports.com</link>
<width>19</width>
<height>18</height>
<description>bbr disc</description>
</image>

<item>
<title>[HN7000S] amc3 87w 1250 transponder problem</title>
<link>http://www.dslreports.com/forum/remark,20848366</link>
<description><![CDATA[Anyone having problems on this bird?

Anything to do about it but wait?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20848366</guid>
<pubDate>2008-07-25 15:07:50</pubDate>
</item>

<item>
<title>[HN7000S] Strange LAN connect problems on modem. Damaged?</title>
<link>http://www.dslreports.com/forum/remark,20847388</link>
<description><![CDATA[Hello all,

I've been researching a problem with my HN7000S and seeing all the wisdom on this board inpsired me to post my problem here and see if anyone has any insight. Here's the deal:

Setup: My modem plugs into the WAN/Internet port of a Linksys WRT54GL. I have a couple desktops wired to the router, and a couple laptops that connect wirelessly. This setup has worked flawlessly for around a year.

What happened:
I came home a couple days ago, after a thunderstorm, and found my internet connection down. I powered everything off and started back up only to find that the LAN light on my modem would not come on (and correspondingly, the Internet light on the router wasn't lit).

I unplugged the modem from the router and plugged directly into my laptop. Nothing. Powered off the Modem and powered back on and this time it worked properly. The Modem was able to browse the internet just fine. 

Plugged back into the Router, but without any success: LAN light still off. Reset the router. No help.

Figured maybe the router's Internet port got blown. So I bought a new one: WRT54GS. Same exact behavior. Neither the Modem nor the router will detect that they are connected. Tried powering on in different orders.

The modem also works fine when plugged straight into one of my desktops. 

One note: the modem always has to be powered down and powered back on between each attempt. In other words, once I unplug the lan cable from the modem, it doesn't matter what I plug it into, the LAN light and the ethernet port lights will remain inactive. I have to power down and power back up for it to work----and sometimes even then it doesn't work and I have to turn it off and on a couple times.

A further note: after all my fiddling and switching back and forth, now the Modem won't connect to the laptop as it originally did. It only connects to my desktop.
 
I've tried all the obvious: making sure the LAN cables are good, reseating, etc.

And a last note: I also have an old, used Linksys BEFW11S4 router. When I plug the modem into the WAN port on this router, the LAN light on the modem and the Internet light on the router light up and there is activity.  However, something in the connection doesn't seem to be right because there is no internet connectivity to the computers connected to the router, and going into the router's control panel and looking at the status doesn't show it having retrieved any connection information from the Modem. A DHCP Renew command has no effect. So even tho the lights are on, something still seems off.

Any ideas?

My only theory at this point is that something is wrong with the DHCP in the modem itself which is preventing the routers from aquiring their Autodetect information, and when my laptop's network connection got reset during all the switching around now it's not able to get what it needs either. Whereas my desktop perhaps having cached preferred IP addresses and information is fine.

Perhaps that's a cracked theory. I'm no expert in this stuff.

If anyone has any thoughts or ideas whatsoever, I would greatly appreciate it.

Thank you so much for your time!

---Benjamin]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20847388</guid>
<pubDate>2008-07-25 12:03:39</pubDate>
</item>

<item>
<title>[HN7000S] FAP Monitoring software w/tray icon</title>
<link>http://www.dslreports.com/forum/remark,20829628</link>
<description><![CDATA[Hello all -

I wrote this in C# .net for a friend of mine with HN, I figure someone else might find it useful as well. I can't guarantee it to be bug free, but it works pretty darn good (on XP anyway, 64 bit vista is so-so). We have a HN7000S modem, I don't know if it would work for any others, but I'll post the source incase anyone wants to mess with it. If you can get to (http://192.168.0.1/cgi/execAdvCom.bin?Command=33) it will probably work.

It has a tray icon that is color coded according to megabyte usage/24 hours, as well as a tool tip text with numeric details. In the main window (can be minimized to just a tray icon) there is a 24 hour bar graph with 5 minute blocks of data, also color coded, that refreshes every 5 minutes, and has detailed stats when you roll over each of the 288 (one for every 5 minute block in 24 hours) bars. 

Anyway, I hope someone finds it useful. Take care, 

JSD

mainForm.csusing System;&#012;using System.Collections.Generic;&#012;using System.ComponentModel;&#012;using System.Data;&#012;using System.Drawing;&#012;using System.Text;&#012;using System.Windows.Forms;&#012;using System.Net;&#012;using System.Xml;&#012;using System.IO;&#012;using System.Text.RegularExpressions;&#012;using System.Collections;&#012; &#012;/**&#012; * Fap Minder 3000&#012; * &#012; * Designed for interface with H0uGh$net&#012; * &#012; * Jacob Dilles 2008&#012; */&#012;namespace FAP_Minder&#012;{&#012;    public partial class mainForm : Form&#012;    {&#012;        /**&#012;         * -------------------------&#012;         * Global data declerations&#012;         * -------------------------&#012;         */&#012; &#012;        // collection of blocks repersenting data&#012;        private Block&#91;&#93; timeBlocks;&#012;        &#012;        // Block that was &#91;0&#93; last redraw. Prevents unessessary redrawing&#012;        private Block lastRedrawnBlock;&#012; &#012;        // router used to get the data&#012;        private HN7000S router = new HN7000S("http://192.168.0.1");&#012; &#012;        /**&#012;         * -------------------------&#012;         * Form initilization methods &#012;         * -------------------------&#012;         */&#012;        public mainForm()&#012;        {&#012;            InitializeComponent();&#012; &#012;        }&#012; &#012;        private void mainForm_Shown(object sender, EventArgs e)&#012;        {&#012;            this.Refresh();&#012;           initBlocks();&#012;           RefreshTimer.Interval = 30000;&#012;           RefreshTimer.Start();&#012;            //testInitBlocks();    &#012;        }&#012; &#012;        private void Form1_Load(object sender, EventArgs e)&#012;        {&#012;            // Check every 5 minutes;&#012; &#012;            generate_icon(Color.Black);&#012; &#012;            &#012;        }&#012;        private void initBlocks()&#012;        {&#012;            fullRefreshProgress.Visible = true;&#012;            fullRefreshProgress.Value = 0;&#012;            timeBlocks = new Block&#91;288&#93;;&#012;            for (int i = 0; i &lt; timeBlocks.Length; i++)&#012;            {&#012;                fullRefreshProgress.Value = i;&#012;                timeBlocks&#91;i&#93; = router.getHistoryBlock(i * 5);&#012;            }&#012;            // Init the array here, with status bar updating &#012;            redrawMyStuff();&#012; &#012;            fullRefreshProgress.Visible = false;&#012;        }&#012; &#012;        private void testInitBlocks()&#012;        {&#012;            timeBlocks = new Block&#91;288&#93;;&#012;            for (int i = 0; i &lt; timeBlocks.Length; i++)&#012;            {&#012;                Block b = new Block(System.DateTime.Now.AddMinutes(-5*i),i*100000,i*75000);&#012;                b.infoString = "bytes: " + bytesAsString(b.rx);&#012; &#012;                timeBlocks&#91;i&#93; = b;&#012;            }&#012;            // Init the array here, with status bar updating &#012;            redrawMyStuff();&#012;        }&#012;        // for config to change URL&#012;        public void setRouter(string url, string routerType){&#012;            status("Setting router type to: " + routerType);&#012;            status("Setting router URL to: " + url);&#012;            router = new HN7000S(url);&#012;        }&#012;        /**&#012;         * -------------------------&#012;         * Button Handlers &#012;         * -------------------------&#012;         * &gt;Refresh button&#012;         * &gt;Clear button&#012;         * &gt;MainForm resize&#012;         * &gt;Tray Icon dblclick&#012;         * &gt;Refresh Period changed&#012;         * fullRefresh clicked&#012;         * tool strip functions (3)&#012;         */&#012; &#012;        private void refreshButton_Click(object sender, EventArgs e)&#012;        {&#012;            refresh();&#012;        }&#012; &#012;        private void clearButton_Click(object sender, EventArgs e)&#012;        {&#012;            statusBox.Clear();&#012;            refresh();&#012;        }&#012; &#012;        private void mainForm_Resize(object sender, EventArgs e)&#012;        {&#012;            if (FormWindowState.Minimized == WindowState)&#012;                Hide();&#012;        }&#012; &#012;        private void trayIcon_DoubleClick(object sender, EventArgs e)&#012;        {&#012;            Show();&#012;            WindowState = FormWindowState.Normal;&#012;        }&#012; &#012;        private void fullRefreshButton_Click(object sender, EventArgs e)&#012;        {&#012;            fullRefreshProgress.Value = 0;&#012;            MessageBox.Show("Please wait, this takes some time...");&#012; &#012;            initBlocks();&#012;        }&#012; &#012;        private void exitToolStripMenuItem_Click(object sender, EventArgs e)&#012;        {&#012;            Application.Exit();&#012;        }&#012; &#012;        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)&#012;        {&#012;            AboutBox1 about = new AboutBox1();&#012;            about.Show();&#012;        }&#012; &#012;        private void optionsToolStripMenuItem_Click(object sender, EventArgs e)&#012;        {&#012;            optionForm options = new optionForm(this);&#012;            options.Show();&#012;            &#012;        }&#012;        /**&#012;         * -------------------------&#012;         * Form control elements&#012;         * -------------------------&#012;         * &#012;         * &gt; Status - update the status box&#012;         * &gt; generate icon - create the tray and window icon with colored prettyness&#012;         * &gt; generate graph - do the bar graph&#012;         * &gt; redrawMyStuff - write all things to screen &#012;         */&#012;        private void status(string update)&#012;        {&#012;            // prevent memory leak&#012;            if (statusBox.Text.Length &gt; 10000) statusBox.Text = statusBox.Text.Substring(0, 300);&#012;            // update status box&#012;            statusBox.Text = update + "\r\n" + statusBox.Text;&#012;        }&#012; &#012;        private void generate_icon(Color color)&#012;        {&#012;            Bitmap canvas = new Bitmap(16, 16);&#012;            using (Graphics g = Graphics.FromImage(canvas))&#012;            {&#012; &#012;                SolidBrush myBrush = new SolidBrush(color);&#012;                g.FillRectangle(Brushes.Transparent, 0, 0, 15, 15);&#012;                g.FillEllipse(myBrush, 0, 0, 15, 15);&#012;                g.Flush();&#012;                this.Icon = Icon.FromHandle(canvas.GetHicon());&#012;                trayIcon.Icon = this.Icon;&#012;            }&#012; &#012;        }&#012; &#012;        private void redrawMyStuff()&#012;        {&#012;            // check for unessesary redraws&#012;            if (lastRedrawnBlock == timeBlocks&#91;0&#93;) return;&#012; &#012;            double totalTx = 0;&#012;            double totalRx = 0;&#012;            double corrdRx = 0;&#012; &#012;            &#012;            // 3mb/s = 112 Mb/5 min max, so 64 sounds like a good number&#012;            // Graph has 288 bars, 1px each, plus 16 px on left for text, and a 2px verticle bar = 306 wide&#012;            // 64 px high&#012;            Bitmap graph = new Bitmap(288, 80);&#012; &#012;            using (Graphics g = Graphics.FromImage(graph))&#012;            {&#012;                // Draw the graph background as solid black&#012;                SolidBrush forground = new SolidBrush(Color.Black);&#012;                SolidBrush datebrush = new SolidBrush(Color.Red);&#012;                SolidBrush background = new SolidBrush(Color.White);&#012;                SolidBrush graybrush = new SolidBrush(Color.DimGray);&#012;                Pen uplinkPen = new Pen(new SolidBrush(Color.DimGray));&#012;                Pen datelinePen = new Pen(datebrush);&#012;                Pen downlinkPen;&#012; &#012;                Rectangle datarectangle = new Rectangle(0, 0, 288, 70);&#012;                Rectangle textrectangle = new Rectangle(0, 71, 288, 80);&#012;                g.FillRectangle(forground, datarectangle);&#012;                g.FillRectangle(graybrush, textrectangle);&#012; &#012;                // Draw the scale and text&#012;                Font keyFont = new Font("Arial", 6);&#012;                Font dateFont = new Font("Arial", 8);&#012; &#012;                int mn = System.DateTime.Now.Minute;&#012; &#012;                for (int i = 0; i &lt; timeBlocks.Length; i++)&#012;                {&#012;                    // draw in the scale&#012;                    if (mn &lt; 5)&#012;                    {&#012;                        string tstring = "" + System.DateTime.Now.AddMinutes(-5 * i).Hour;&#012;                        g.DrawString(tstring, keyFont, forground, i, 71);&#012;                        mn = 60;&#012;                    }&#012;                    mn = mn - 5;&#012; &#012;                    Block iBlock = timeBlocks&#91;i&#93;;&#012; &#012;                    // compute stats while at it&#012;                    totalTx += iBlock.tx;&#012;                    totalRx += iBlock.rx;&#012; &#012;                    // draw in the date(s) &#012;                    if (iBlock.time.Hour == 0 &amp;&amp; iBlock.time.Minute &lt;= 5) // it's a new day&#012;                    {&#012;                        string tstring = " "+iBlock.time.ToShortDateString();&#012;                        g.DrawString(tstring, dateFont, datebrush, i, 0);&#012;                        g.DrawLine(datelinePen, i, 0, i, 12);&#012; &#012;                    }&#012; &#012;                    Color instantColor;&#012;                    &#012;                    // draw in immunity period&#012;                    if (iBlock.time.Hour == 5)&#012;                    {&#012;                        g.DrawLine(uplinkPen, i, 0, i, 70);&#012;                        instantColor = new HSLColor((((-4 * (double)Math.Min(20971520, iBlock.rx))) / (1024 * 1024)) + 80, 240, 100); // get the color &#012;                    }&#012;                    else&#012;                    {&#012;                        corrdRx += iBlock.rx;&#012;                        instantColor = new HSLColor((((-4 * (double)Math.Min(20971520, iBlock.rx))) / (1024 * 1024)) + 80, 240, 120); // get the color &#012;                    }&#012; &#012;                    &#012;                    &#012;                    &#012;                    downlinkPen = new Pen(new SolidBrush(instantColor));&#012;                    // Start point is (i/5) i.e. 5 minute block for x, 64 for y&#012;                    // End point is (i/5) for x, 64-downlink in megs for y&#012;                    g.DrawLine(downlinkPen, new Point(i, 70), new Point(i, (70 - (int)((iBlock.rx + 1) / 350000))));&#012; &#012;                    &#012;                }&#012;                g.Flush();&#012; &#012;            }&#012;            this.graphBox.Image = graph;&#012; &#012;            // update status box&#012;            status("Total uplink: " + totalTx);&#012;            status("Total downlink: " + totalRx);&#012;            status("Corrected downlink: " + corrdRx);&#012; &#012;            // update the title bar&#012;            this.Text = "Used " + bytesAsString(corrdRx) + " down, " + bytesAsString(totalTx) + " up";&#012; &#012;            // update the tray icon&#012;            trayIcon.Text = "FAP Minder\r\n" + bytesAsString(corrdRx) + " down\r\n" + bytesAsString(totalTx) + " up";&#012;            generate_icon(new HSLColor(Math.Round((double)(-.303523 * Math.Min(500, corrdRx / 1048576) + 128)), 239, 116));&#012; &#012;            // prevent unessesary redraws &#012;            lastRedrawnBlock = timeBlocks&#91;0&#93;;&#012;        }&#012; &#012;        /**&#012;         * -------------------------&#012;         * Periodic repeating functions &#012;         * -------------------------&#012;         */&#012;        private void RefreshTimer_Tick(object sender, EventArgs e)&#012;        {&#012;            // single refresh&#012;            refresh();&#012;        }&#012; &#012;        private void refresh()&#012;        {&#012;            // Get the latest data&#012;            Block newBlock = router.getHistoryBlock(0);&#012; &#012;            // If it's old data, don't worry about it&#012;            if(newBlock.equals(timeBlocks&#91;0&#93;)) return;&#012; &#012;            // If the array out of sync, just rebuild the whole thing&#012;            if (!router.getHistoryBlock(5).equals(timeBlocks&#91;0&#93;))&#012;            {&#012;                initBlocks();&#012;                return;&#012;            }&#012; &#012;            // Start at second-to-last block (last should be oldest) shift down&#012;            for (int i = timeBlocks.Length - 2; i &gt; 0; i--)&#012;            {&#012; &#012;                timeBlocks&#91;i&#93; = timeBlocks&#91;i-1&#93;;&#012;            }&#012; &#012;            timeBlocks&#91;0&#93; = newBlock;&#012; &#012;            redrawMyStuff();&#012;        }&#012;        /**&#012;         * -------------------------&#012;         * Utility methods&#012;         * -------------------------&#012;         */&#012;        &#012;        private string bytesAsString(double num)&#012;        {&#012;            return bytesAsString((int)num);&#012;        }&#012; &#012;        private string bytesAsString(int num)&#012;        {&#012;            if (num &lt;= 0) return "0b";&#012;            if (0 &lt; num &amp;&amp; num &lt; 1024) return (num + " b");&#012;            if (1024 &lt; num &amp;&amp; num &lt; 1048576) return (Math.Round((double)num / 1024, 2) + " kb");&#012;            if (1048576 &lt; num &amp;&amp; num &lt; 1073741824) return (Math.Round((double)num / 1048576, 2) + " Mb");&#012;            if (1073741824 &lt; num &amp;&amp; num &lt; int.MaxValue) return (Math.Round((double)num / 1073741824, 2) + " Gb");&#012;            return "How did you download a terabyte?";&#012; &#012;        }&#012; &#012;        private int getBlockFromTime(DateTime when)&#012;        {&#012;            DateTime now = System.DateTime.Now;&#012; &#012;            TimeSpan diffrence = (now - when);&#012;            // can't be future &#012;            if (diffrence.Seconds &lt; 0) return -1;&#012;            // can't be past 24 hours&#012;            if (diffrence.Minutes &gt;= 1440) return 287;&#012;            // get rounded to closest timeblock&#012;            return ((diffrence.Minutes - (diffrence.Minutes % 5)) / 5);&#012; &#012;        }&#012; &#012;        private void graphBox_MouseLeave(object sender, EventArgs e)&#012;        {&#012;            hourDetail.Hide(this);&#012;        }&#012; &#012;        private void graphBox_MouseMove(object sender, MouseEventArgs e)&#012;        {&#012;            if (e.X &gt; 0 &amp;&amp; e.X &lt; timeBlocks.Length)&#012;            {&#012;                hourDetail.Show(timeBlocks&#91;e.X&#93;.infoString, this, e.X, 270);&#012;            }&#012;                &#012;            &#012;        }&#012;    }&#012;}&#012;
This is the interface to the router's diagnostic pages

HN7000S.csusing System;&#012;using System.Collections.Generic;&#012;using System.ComponentModel;&#012;using System.Data;&#012;using System.Drawing;&#012;using System.Text;&#012;using System.Windows.Forms;&#012;using System.Net;&#012;using System.Xml;&#012;using System.IO;&#012;using System.Text.RegularExpressions;&#012;using System.Collections;&#012;namespace FAP_Minder&#012;{&#012;    class HN7000S&#012;    {&#012;        //base url (&#012;        string baseURL;&#012; &#012;        // Used to get network time&#012;        static string summeryURL = "/stats/summary/summary.html";&#012; &#012;        // Used to get 5 minute blocks &#012;        static string fiveMinURL = "/cgi/execAdvCom.bin?Command=33&amp;param=";&#012; &#012;        public HN7000S(string baseURL)&#012;        {&#012;            this.baseURL = baseURL;&#012;        }&#012; &#012;        public HN7000S()&#012;        {&#012;            this.baseURL = "http://192.168.0.1";&#012;        }&#012; &#012;        public DateTime getNetworkTime()&#012;        {&#012;            return System.DateTime.Now;&#012;        }&#012; &#012;        public Block getHistoryBlock(int minutesAgo)&#012;        {&#012;            // Cant see into the future&#012;            if (minutesAgo &lt; 0) minutesAgo = 0;&#012; &#012;            Block block = new Block(System.DateTime.Now.AddMinutes(-1 * minutesAgo), 0, 0);&#012;            block.infoString = "No data avalible";&#012; &#012;            try&#012;            {&#012;                Uri instant = new Uri(baseURL+fiveMinURL + minutesAgo);&#012; &#012;                HttpWebRequest request = (HttpWebRequest)WebRequest.Create(instant);&#012; &#012;                HttpWebResponse response = (HttpWebResponse)request.GetResponse();&#012; &#012;                using (StreamReader reader = new StreamReader(response.GetResponseStream()))&#012;                {&#012;                    // get upplink and downlink stats for each time block&#012;                    String line;&#012; &#012;                    while ((line = reader.ReadLine()) != null)&#012;                    {&#012;                        if(line.Contains("History does not exist"))&#012;                        {&#012;                            // Can't go that far back&#012;                            return block;&#012;                        }&#012;                        if (line.StartsWith("Monitoring interval"))     &#012;                        {&#012;                            block.infoString = line.Substring(25).Trim();&#012;                            continue;&#012;                        }&#012;                        if (line.StartsWith("Interface"))&#012;                        {&#012;                            block.infoString += "\n" + line.Trim();&#012;                            continue;&#012;                        }&#012;                        if (line.StartsWith("Uplink"))&#012;                        {&#012;                            block.tx = convertBytesStringToInt(line.Substring(18, 12).Trim());&#012;                            block.infoString += "\n" + line.Trim();&#012;                            continue;&#012;                        }&#012;                        if (line.StartsWith("Downlink"))&#012;                        {&#012;                            block.rx = convertBytesStringToInt(line.Substring(18, 12).Trim());&#012;                            block.infoString += "\n" + line.Trim();&#012;                            break;&#012;                        }&#012;                    }&#012;                }&#012; &#012;            }&#012;            catch (Exception e)&#012;            {&#012;                block.infoString += "\n" + e.Message;&#012;            }&#012;            return block;&#012;        }&#012; &#012;        private static Regex kb = new Regex("&#91;\\d\\.&#93;+K");&#012;        private static Regex mb = new Regex("&#91;\\d\\.&#93;+M");&#012; &#012;        private int convertBytesStringToInt(string bytesString)&#012;        {&#012;            int value = 0;&#012; &#012;            if (kb.IsMatch(bytesString)) value = (int)(decimal.Parse(bytesString.Substring(0, bytesString.Length - 1), System.Globalization.NumberStyles.AllowDecimalPoint) * 1000);&#012;            else if (mb.IsMatch(bytesString)) value = (int)(decimal.Parse(bytesString.Substring(0, bytesString.Length - 1), System.Globalization.NumberStyles.AllowDecimalPoint) * 1000000);&#012;            return value;&#012; &#012;        }&#012; &#012;    }&#012;}&#012; &#012;
block.csusing System;&#012;using System.Collections.Generic;&#012;using System.Text;&#012; &#012;namespace FAP_Minder&#012;{&#012;    class Block&#012;    {&#012;            public DateTime time;&#012;            public string infoString;&#012;            public int tx;&#012;            public int rx;&#012; &#012;            public Block()&#012;            {&#012;                this.rx = 0;&#012;                this.tx = 0;&#012;                this.time = new DateTime();&#012;            }&#012; &#012;            public Block(DateTime time, int tx, int rx)&#012;            {&#012;                this.time = time;&#012;                this.tx = tx;&#012;                this.rx = rx;&#012;            }&#012; &#012;        public bool equals(Block b)&#012;        {&#012;            return b.rx == this.rx &amp;&amp; b.tx == this.tx;&#012;        }&#012; &#012;    }&#012;}&#012;
Let me know if there's a problem with the attachment and I'll throw it on my site
]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20829628</guid>
<pubDate>2008-07-22 07:35:43</pubDate>
</item>

<item>
<title>Can satellite aim &#x22;drift&#x22;???</title>
<link>http://www.dslreports.com/forum/remark,20847409</link>
<description><![CDATA[Maybe an ignorant question, but after 3 years my signal strength has gradually dropped from 75 down now to typically 64. The building my dish is bolted to is on mostly solid rock--assuming no settling of the foundation, is it possible that the Earth and satellite can drift out-of-perfect after a while?

Yeah I suppose I should just get-up there with a wrench and re-aim the thing, but this question popped into my head and I'm sure someone here knows the answer...
--
DW6000CEv5.4.1.11, G13/H1@127W, 1270MHz, SigTyp74, 10-20clients & 6+OSes]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20847409</guid>
<pubDate>2008-07-25 12:06:36</pubDate>
</item>

<item>
<title>[HN9000] Acting weird. Unable to browse at times,bitorrent.</title>
<link>http://www.dslreports.com/forum/remark,20845298</link>
<description><![CDATA[Last night I started a dl of bleach through utorrent. This morning I look at the download and it was about 5 percent done. My I could not connect to any site, etc. For some reason the modem was being recognized as an Azureus media server (could be related to adding the TCP and UDP ports to the exceptions list in the firewall). Vista's Network and Sharing center showed that my computer was trying to connect to multiple networks, and that was blocking me from the internet (instead of just seeing the "network 3", there was that Azureus media server, too). Both connections appeared to be "unknown". So, I switch plug the Ethernet cable in the other Ethernet port in my computer. Problem seemed fixed, BLAZING speeds (for satellite)! I could finally connect to google again, bittorrent picked up quickly and was downloading at 144 kb/s within eight minutes, even with only ten peers and seeds.

I come back a few hours later and the same problem happens (only this time I saw "network 3" and some kind of other network with it). I fix this by setting the proxy for the computer to connect to the modem through LAN settings in Internet Options (I'm surprised the installer didn't do this). Problems fixed! Well, except for certain url's accessed through firefox 3 that give me the TCP 1299 error code, like yahoo email login (which works fine in IE7). I go play DMC4 for a while. Finally I go find out that the new naruto episode just aired in japan today was subbed and posted two hours ago. Okay, so the torrent should be well seeded and stable. It should download even faster than bleach did this morning, right? WRONG!

For a little while I was getting about 2-6 kb's. I disabled DHT and still no luck. Enabling the proxy to the modem through utorrent didn't work, either. Download speeds through the browser are excellent all day long. WTF is going on here!? There are over 14000 seeders and over 14000 leechers! I can only get two or three of each at a time. Could it be because I just got my satellite installed yesterday? I'm on the elite plan.

Also, I have a HN7000S and a DW7000. Would either of those help stabilize my connection? And, is anyone else having similar issues? Best of luck to anyone else who does.

Edit: Seems like any https protocol gets the error. 

Edit: https problem fixed for firefox. Enabled proxy in firefox only for http. (But BT is still slooooooow! I finally have average speeds of up to 15 kbytes/sec, though. Still, why not 144 kb/s like this morning? 

I might just downgrade to proplus and get a static IP. Proplus appears to be a better deal regardless. Switching to proplus, I'd get 80 / 83 percent of the download / upload I have with elite for about 66.7 percent of the price and 85 percent of the FAP bucket. I'd buy a static IP but it sounds like a lot of trouble to set up port forwarding. All the necessary information to set up port forwarding seems to be littered among thousands of lines of text, too difficult to string together (at least when I'm extremely tired :()]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20845298</guid>
<pubDate>2008-07-24 22:27:41</pubDate>
</item>

<item>
<title>Wireless Internet beats Hughesnet</title>
<link>http://www.dslreports.com/forum/remark,20614026</link>
<description><![CDATA[After years of struggling with DirecWay/Hughesnet, I have finally been freed by wireless.  In rural VA,Verizon (at 1-2 bars)delivers speed of 120-180K down/80-90kbps up using UM-150 modem on lap-top and desk-top.  This is much faster than Hughsnet has been delivering for the past two years.   The price is $10/month less (currently free Modem promo with $25 activation), and the tech support is OUTSTANDING. I always said I would leave HN the moment I had a viable option.  My experience with HN (like many on this forum) represents the most irritating and frustrating consumer experience I have ever had.  Thanks to this forum, I picked up the idea of wireless as an option.  BTW, I am on the "NationalAccess-Extended Network" which is the slowest service.  When I travel to primary Verizon service areas, download increases to 600-800K. Thanks to all who support the forum.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20614026</guid>
<pubDate>2008-06-09 09:19:57</pubDate>
</item>

<item>
<title>commisioning on ia8?</title>
<link>http://www.dslreports.com/forum/remark,20845553</link>
<description><![CDATA[hey guys are they still comissining on ia8? i ask because im one of the many affected by g17 coming online. and im looking for a new sat for my small office plan.
thanks
--
St louis du nord,Haiti,Idirect pointed at Intelsat 905 @ 24.5 west, Apple Macbook pro 2gbmemory/Airport Express router w/ pcs-running winxpHome
]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20845553</guid>
<pubDate>2008-07-24 23:30:53</pubDate>
</item>

<item>
<title>[HN7000S] Signal Strength</title>
<link>http://www.dslreports.com/forum/remark,20838986</link>
<description><![CDATA[When my DirecWay was installed six years ago, the installer claimed that he had attained a Signal Strength of 60. I never saw 60, more like 40. It eventually degaraded to 34-37 where it remained for several years. Before I installed the 7000, I had another installer come out who re-aimed the dish and, for the past year, get around 50. The installer said that with my tree cover and possibly bad cabling, it was the best I could hope for.
This morning it was 76 and all day has been as high as 85. Is there a rational explanation for this sudden increase?
--
DirecWay | DW6000 CE | 91W | Pentium 4 2.60 GHZ | 512 RAM | XP Home/SP2 | LAN:Linksys Wireless Router  WRT54GS]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20838986</guid>
<pubDate>2008-07-23 20:38:13</pubDate>
</item>

<item>
<title>[HN7000S] Self Setup with HN7000S modem</title>
<link>http://www.dslreports.com/forum/remark,20836138</link>
<description><![CDATA[I recently moved into a house that had HughesNet service.  I called to talk to the person about activation, and they told me it would cost between $200 and $400 to set it up.  Even though it was already installed!  He then informed me that I could potentially just buy a modem myself, and activiate it.  Which is what I did. 

However, the person wouldn't let me activate it without an installer coming out to 'check the system'.  This installer wanted $200 just to come out.  I told him forget it.

So, I'm hoping to find out how I can get everything activated on my own. I know that Arion did this, and I tried to contact him directly, but couldn't create an account with dslreports... 

So, any advice on how I can do this?

Thanks,]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20836138</guid>
<pubDate>2008-07-23 11:42:43</pubDate>
</item>

<item>
<title>[DW7000] more email problems - connection to server was interrup</title>
<link>http://www.dslreports.com/forum/remark,20837251</link>
<description><![CDATA[Well Hughes oversubscribed service is messing with my ability to work from my home office today - email has barely worked since this morning, every 2 hours or so, with some pop locations consisently getting the 'connection to server was interrupted.' error.

This started happening when http slowed down quite a bit around 11:30 edt, and has not yet improved. 

I rebooted modem and tried from multiple systems but I have been thru this before and its definitly a problem on their end, probably at NOC juggling too many connections.

I pray for another viable option to sat internet every day.
--
DW7000 IA8 1410 router: 67.142.137.146 fixed |.98 2watt | Small Office | Win2K_PRO(SP4) IE6.0.2600]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20837251</guid>
<pubDate>2008-07-23 15:21:06</pubDate>
</item>

</channel>
</rss>
