element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Access Pi remotetly over the internet
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 7 replies
  • Answers 1 answer
  • Subscribers 665 subscribers
  • Views 519 views
  • Users 0 members are here
  • access
  • pi
  • network
  • raspberry_pi
  • remote
Related

Access Pi remotetly over the internet

Former Member
Former Member over 11 years ago

I am sure this has been answered but I cannot find it!

 

I have set-up a security camera with a PIR and it captures a short video and also emails me a low res. pic when activated. What I would like to do is go and look at the video whilst I am away.

 

The Pi is networked to my BT router but the house PC's are not on-line.

 

How can I get to look at the video on the Pi from, say, my phone whilst out camping?

 

Many thanks

 

Brian

  • Sign in to reply
  • Cancel
  • iagorubio
    0 iagorubio over 11 years ago

    This have little to do with Raspberry really, as it's just a networking problem.

     

    What you have to do is to forward on your router, one port to the raspberry Pi camera port.

     

    This greatly depends on your router and service provider.

     

    A graphic explanation would be as follows:

     

    image

     

    If you put it down to network topology:

    image

    Of course IPs and ports will have to match your network ones.

     

    That have some issues:

     

    • It's a security risk. You would need to sort out encryption and authoritation on your raspberry before to start.
    • The IPs must be static in both your router and your raspberry. In your router you can set a free no-ip dynamic DNS account to fix it - Free Dynamic DNS - Managed DNS - Managed Email - Domain Registration - No-IP - but on your Raspberry you will need to configure the network interface by hand and avoid to use DHCP.

     

    Other than that, this is easily doable.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • iagorubio
    0 iagorubio over 11 years ago

    Reading your question again, is not that clear your camera is connected and being served by your Pi.

     

    Can you connect to your raspberry on your internal network and see the camera's image ?

     

    If not, that would be your first step.

     

    On the other hand, as you mentioned BT, a quick search returned this page about how to configure port forwarding on BT routers http://bt.custhelp.com/app/answers/detail/a_id/8790/~/does-the-bt-home-hub-allow-game-and-application-sharing%2Fport-forwarding%3F

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • rew
    0 rew over 11 years ago in reply to iagorubio

    Iago Rubio wrote:

    - but on your Raspberry you will need to configure the network interface by hand and avoid to use DHCP.

    With this statement I disagree. I have a bunch of raspberry pi's and Linux x86 machines that have a static DHCP addresses. I personally hand-configure them in my dhcpd.conf file. But a friend of mine has a "web gui" on his router where the static assignment is only a click away.

     

    The advantage of this method is that as long as the mac address stays the same, the machine will end up with the same IP address. Even when, for example, you upgrade and end up with a default: we use DHCP setup again.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • iagorubio
    0 iagorubio over 11 years ago in reply to rew

    Of course you can configure DHCP to serve always the same IP but the easiest path - for someone that is asking such basic questions - is to simply configure a static IP address. You avoid to have to explain the concepts related to dynamic host configuration.

     

    Anyway, I don't use to use DHCP but for dynamic IPs. In my networks every static IP is configured statically, and the DHCP range is just for phones, tablets or laptops of guests.

     

    That lets me use firewall rules to isolate DHCP served IPs from static ones. And I am also kind of lazy to reconfigure the DHCP static entries each time the router needs a factory reset, gets a firmware update or simply is changed by my ISP.

     

    Anyway, the important bit here is you need a fixed IP in your Raspberry either by setting it statically or by setting up the DHCP server to serve always the same IP.

     

    I am sure we will agree on this ;-)

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to iagorubio

    The pi has the piCamera on it and a PIR device and works well and can be 'seen' by my in-house PC. It will be running stand-alone normally.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to iagorubio

    OK, thanks, I will look into doing this tonight.

     

    Cheers.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • rew
    0 rew over 11 years ago in reply to iagorubio

    Iago Rubio wrote:

     

    Of course you can configure DHCP to serve always the same IP but the easiest path - for someone that is asking such basic questions - is to simply configure a static IP address. You avoid to have to explain the concepts related to dynamic host configuration.

    On the other hand, for my friend, just clicking "always assign this address to this device" is easier than configuring the static IP address. If the router in question happens to have that option, that is IMHO the easiest route. But indeed, a close second is the "then configure a static IP manually".

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube