<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[הגנה על כניסה לרשת מבחוץ]]></title><description><![CDATA[<p dir="auto">נשאלתי:<br />
יש רשת של בית כנסת. באחד המחשבים יש פיקוד על החשמל. הראוטר מפנה את אחד הפורטים למחשב הזה, וכך אפשר לשלוט על החשמל מכל מקום.<br />
הבעיה החמורה היא שאין שום הגנה על הפיקוד, וכל אחד שיודע את ה IP והפורט, יכול להיכנס לפיקוד ללא צורך בסיסמה.<br />
הצעתי לו לעשות בראוטר אפשרות לכניסה רק לכתובות IP מסוימות. הבעיה היא שיש משתמשים רבים ואי אפשר לעשות לכל אחד IP קבוע.<br />
השאלה היא מה הפתרון הזול ביותר לבעיה זו?<br />
האם ישנה דרך להתקין איזושהי חומת אש על המחשב שבו מותקן הפיקוד על החשמל שתצריך אימות בסיסמה?</p>
<p dir="auto">וכן, מה העלויות של שרת VPN? (אם לא יהיה פתרון אחר).</p>
]]></description><link>https://tchumim.com/topic/3417/הגנה-על-כניסה-לרשת-מבחוץ</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 02:49:59 GMT</lastBuildDate><atom:link href="https://tchumim.com/topic/3417.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 20 Aug 2018 13:37:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Tue, 21 Aug 2018 12:00:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dovid">@<bdi>dovid</bdi></a> לא יודע מה אתה רוצה ממני.<br />
הבאת קישור למדריך של ספרייה ב nodejs.<br />
עשיתי לפי המדריך.<br />
אין לי יותר מה להוסיף ולפרט.<br />
אשמח אם תכוון אותי יותר.</p>
]]></description><link>https://tchumim.com/post/34877</link><guid isPermaLink="true">https://tchumim.com/post/34877</guid><dc:creator><![CDATA[מנצפך]]></dc:creator><pubDate>Tue, 21 Aug 2018 12:00:25 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Tue, 21 Aug 2018 11:50:44 GMT]]></title><description><![CDATA[<p dir="auto">זה לא נקרא פרוטרוט. וזה פעם אחרונה בל"נ שאני מתייחס בלי פירוט מלא.</p>
]]></description><link>https://tchumim.com/post/34872</link><guid isPermaLink="true">https://tchumim.com/post/34872</guid><dc:creator><![CDATA[dovid]]></dc:creator><pubDate>Tue, 21 Aug 2018 11:50:44 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Tue, 21 Aug 2018 11:46:24 GMT]]></title><description><![CDATA[<pre><code>var express = require('express');
var app = express();
var httpProxy = require('http-proxy');
var apiProxy = httpProxy.createProxyServer();
var serverOne = 'http://xxx.xxx.xxx.xxx:xxxx/',

app.all("/app1*", function (req, res) {
  apiProxy.web(req, res, { target: serverOne });
});

app.listen(3000);
</code></pre>
<p dir="auto">הבעיה היא בזה שאני צריך להיכנס לכתובת app1.<br />
אם אני עושה</p>
<pre><code>app.all("/*", function (req, res) {
  apiProxy.web(req, res, { target: serverOne });
});
</code></pre>
<p dir="auto">זה עובד בצורה טובה.<br />
(רק שאז בנטפרי הוא עושה שגיאה כלשהי. אבל על זה נדבר אח"כ)</p>
]]></description><link>https://tchumim.com/post/34870</link><guid isPermaLink="true">https://tchumim.com/post/34870</guid><dc:creator><![CDATA[מנצפך]]></dc:creator><pubDate>Tue, 21 Aug 2018 11:46:24 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Tue, 21 Aug 2018 09:27:54 GMT]]></title><description><![CDATA[<p dir="auto">תכתוב מה עשית בפרוטרוט.</p>
]]></description><link>https://tchumim.com/post/34859</link><guid isPermaLink="true">https://tchumim.com/post/34859</guid><dc:creator><![CDATA[dovid]]></dc:creator><pubDate>Tue, 21 Aug 2018 09:27:54 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Tue, 21 Aug 2018 09:18:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dovid">@<bdi>dovid</bdi></a><br />
עשיתי.<br />
כשאני מנתב ל IP חיצוני (לא localhost) אני מקבל:</p>
<p dir="auto"><em><strong>שגיאת שרת<br />
404 - הקובץ או הספריה לא נמצאו.<br />
ייתכן שהמשאב שאתה מחפש הוסר, שמו השתנה או שהוא אינו זמין באופן זמני.</strong></em></p>
<p dir="auto">בתוך המכונה (Localhost) זה עובד טוב.</p>
]]></description><link>https://tchumim.com/post/34857</link><guid isPermaLink="true">https://tchumim.com/post/34857</guid><dc:creator><![CDATA[מנצפך]]></dc:creator><pubDate>Tue, 21 Aug 2018 09:18:56 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Tue, 21 Aug 2018 09:07:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A0%D7%A6%D7%A4%D7%9A">@<bdi>מנצפך</bdi></a> אמר ב<a href="/post/34855">הגנה על כניסה לרשת מבחוץ</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> תוכל להסביר יותר מה לעשות?<br />
אני בונה דף זיהוי (בNoodeJs), ומשם איך אני מנתב עם הרברס פרוקסי?</p>
</blockquote>
<p dir="auto">אם זה בnodejs,<br />
<a href="https://codeforgeek.com/2015/12/reverse-proxy-using-expressjs/" target="_blank" rel="noopener noreferrer nofollow ugc">https://codeforgeek.com/2015/12/reverse-proxy-using-expressjs/</a><br />
כמובן אתה צריך להוסיך דף אימות, ולעשות שרק משתמש מאומת מקבל את הריברס פרוקסי.</p>
]]></description><link>https://tchumim.com/post/34856</link><guid isPermaLink="true">https://tchumim.com/post/34856</guid><dc:creator><![CDATA[dovid]]></dc:creator><pubDate>Tue, 21 Aug 2018 09:07:57 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Tue, 21 Aug 2018 08:37:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> תוכל להסביר יותר מה לעשות?<br />
אני בונה דף זיהוי (בNoodeJs), ומשם איך אני מנתב עם הרברס פרוקסי?</p>
]]></description><link>https://tchumim.com/post/34855</link><guid isPermaLink="true">https://tchumim.com/post/34855</guid><dc:creator><![CDATA[מנצפך]]></dc:creator><pubDate>Tue, 21 Aug 2018 08:37:48 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Tue, 21 Aug 2018 06:31:17 GMT]]></title><description><![CDATA[<p dir="auto">הרואטר מפנה פורט X, למחשב פנימי Y + פורט Z למשל 80.<br />
כך שחוץ מממשק אפליקציית החשמל, המחשב לא באיום כלל. אין שום בעיה שכל העולם יכול לגשת לפורט 80 כל עוד האפליקציה שמאזינה שם היא מאובטחת ובלי חורים רשלניים.<br />
אם האפליקציה לא מאובטחת יש לעשות את הפתרון של @clickone.</p>
]]></description><link>https://tchumim.com/post/34839</link><guid isPermaLink="true">https://tchumim.com/post/34839</guid><dc:creator><![CDATA[dovid]]></dc:creator><pubDate>Tue, 21 Aug 2018 06:31:17 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 20:48:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/www">@<bdi>www</bdi></a><br />
בפרוקסי רגיל אתה פונה לשרת ומבקש דף, והוא מחזיר לך אותו.<br />
הוא משמש בד"כ כדי לעבור ולקבל את הנתונים שלך על כל אתר מול מקום אחד<br />
רברס פרוקסי מיוד לשרת שעושה ניתוב / באלאנס על דומיין אחד או קצת יותר, אבל המטרה שלו היא לא לעזור לך המשתמש, אלא למנהל האתר / שרת.<br />
זה על קצה המזלג.</p>
<p dir="auto">אני מניח שחיפוש בגוגל<br />
proxy vs reverse proxy<br />
ייתן תשובות יותר מפורטות ומדוייקות</p>
]]></description><link>https://tchumim.com/post/34836</link><guid isPermaLink="true">https://tchumim.com/post/34836</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Mon, 20 Aug 2018 20:48:30 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 20:33:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a><br />
אני מבין,<br />
אבל מה הכוונה 'רברס'?</p>
<p dir="auto">מה זה שונה מפרוקסי רגיל?</p>
]]></description><link>https://tchumim.com/post/34835</link><guid isPermaLink="true">https://tchumim.com/post/34835</guid><dc:creator><![CDATA[WWW]]></dc:creator><pubDate>Mon, 20 Aug 2018 20:33:58 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 20:32:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/www">@<bdi>www</bdi></a><br />
הבאתי למעלה את הכיוון.<br />
משתמשים בזה בד"כ כדי לתת תחושה / כדי לפתור בעייה<br />
שהדף / תיקייה נראית כמגיעה מדומיין אחד, בעוד שבפועל היא מגיעה מדומיין אחר, ואף משרת אחר לגמרי.<br />
משתמש הקצה לא מרגיש את זה ולא מודע לזה בכלל.<br />
דוגמא מעניינת שעשיתי במקום קרוב לכאן, דף IFrame שהמקור שלו היה דומיין אחר, ולכן נחסם לעיתים לאנשים בנטפרי עם ההגדרות האישיות שלהם,<br />
מה שבעצם עשיתי זה לשים את הכתובת עם רברס פרוקסי לתיקייה וירטואלית בתוך הדומיין הראשי.<br />
זה גרם שלמשתמש זה היה פתוח אפילו שבעצם הדף ישב על שרת אחר במדינה אחרת.</p>
]]></description><link>https://tchumim.com/post/34834</link><guid isPermaLink="true">https://tchumim.com/post/34834</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Mon, 20 Aug 2018 20:32:22 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 20:19:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> תוכל להחכים אותי,<br />
מה הכוונה <strong>רברס</strong> פרוקסי?</p>
]]></description><link>https://tchumim.com/post/34830</link><guid isPermaLink="true">https://tchumim.com/post/34830</guid><dc:creator><![CDATA[WWW]]></dc:creator><pubDate>Mon, 20 Aug 2018 20:19:36 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 19:50:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A0%D7%A6%D7%A4%D7%9A">@<bdi>מנצפך</bdi></a><br />
עד שאתה בודק, לדעתי הפיתרון פיקס בשבלך זה</p>
<ol>
<li>לחסום את הכתובת מבחוץ</li>
<li>דף עם זיהוי</li>
<li>רברס פרוקסי עם <a href="https://github.com/OptimalBits/redbird" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/OptimalBits/redbird</a></li>
</ol>
]]></description><link>https://tchumim.com/post/34823</link><guid isPermaLink="true">https://tchumim.com/post/34823</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Mon, 20 Aug 2018 19:50:47 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 19:47:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zvinissim">@<bdi>zvinissim</bdi></a> הבעיה כפי שנכתבה. אין שום הגנה מינימלית. גם לא עם שם משתמש וסיסמא לאתר הפיקוד (WEB כמובן).</p>
<p dir="auto">לא ראיתי בעיני. אבל זו השאלה שקיבלתי. אבדוק שוב ואחזור עם תשובה.</p>
]]></description><link>https://tchumim.com/post/34822</link><guid isPermaLink="true">https://tchumim.com/post/34822</guid><dc:creator><![CDATA[מנצפך]]></dc:creator><pubDate>Mon, 20 Aug 2018 19:47:15 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 19:44:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zvinissim">@<bdi>zvinissim</bdi></a><br />
נמתין ל <a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A0%D7%A6%D7%A4%D7%9A">@<bdi>מנצפך</bdi></a><br />
משהו כאן לא ברור לי.<br />
(די ברור לי שזה כנראה לא מה שאתה כותב, כי זה גישה מרחוק ישירות לפיקוד בלי מחשב וכלום)</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A0%D7%A6%D7%A4%D7%9A">@<bdi>מנצפך</bdi></a> אמר ב<a href="/post/34801">הגנה על כניסה לרשת מבחוץ</a>:</p>
<blockquote>
<p dir="auto">הבעיה החמורה היא שאין שום הגנה על הפיקוד, וכל אחד שיודע את ה IP והפורט, יכול להיכנס לפיקוד ללא צורך בסיסמה.</p>
</blockquote>
]]></description><link>https://tchumim.com/post/34821</link><guid isPermaLink="true">https://tchumim.com/post/34821</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Mon, 20 Aug 2018 19:44:14 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 19:34:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A9%D7%A8%D7%93%D7%99">@<bdi>משרדי</bdi></a> אמר ב<a href="/post/34813">הגנה על כניסה לרשת מבחוץ</a>:</p>
<blockquote>
<p dir="auto">הזוי!<br />
אצלי יש מערכת של מפקד החשמל (בנימין סגל) +שליטה דרך הטלפון (IVR) לכמה משתמשים, אני מכיר הרבה חברות משלבי ההקמה ולא ראיתי דבר כזה כניסה ללא סיסמא.</p>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> זה מה שאני חושב<br />
נראה לי שלכניסה למערכת יש לו שם משתמש וסיסמה <a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A0%D7%A6%D7%A4%D7%9A">@<bdi>מנצפך</bdi></a> צריך <strong>שלא כל אחד יוכל להכנס למחשב ויתחיל לחטט</strong> לו בקבצים<br />
ועל זה אולי רק VPN יפתור לו את הבעיה</p>
]]></description><link>https://tchumim.com/post/34820</link><guid isPermaLink="true">https://tchumim.com/post/34820</guid><dc:creator><![CDATA[zvinissim]]></dc:creator><pubDate>Mon, 20 Aug 2018 19:34:22 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 17:28:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> אמר ב<a href="/post/34807">הגנה על כניסה לרשת מבחוץ</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zvinissim">@<bdi>zvinissim</bdi></a><br />
הוא כתב מפורשש שהכניסה ללא שם משתמש וסיסמא</p>
</blockquote>
<p dir="auto">הזוי!<br />
אצלי יש מערכת של <a href="http://www.mefaked.com/elec/info" target="_blank" rel="noopener noreferrer nofollow ugc">מפקד החשמל</a> (בנימין סגל) +שליטה דרך הטלפון (IVR) לכמה משתמשים, אני מכיר הרבה חברות משלבי ההקמה ולא ראיתי דבר כזה כניסה ללא סיסמא.</p>
]]></description><link>https://tchumim.com/post/34813</link><guid isPermaLink="true">https://tchumim.com/post/34813</guid><dc:creator><![CDATA[משרדי]]></dc:creator><pubDate>Mon, 20 Aug 2018 17:28:19 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 16:32:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zvinissim">@<bdi>zvinissim</bdi></a><br />
הוא כתב מפורשש שהכניסה ללא שם משתמש וסיסמא</p>
]]></description><link>https://tchumim.com/post/34807</link><guid isPermaLink="true">https://tchumim.com/post/34807</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Mon, 20 Aug 2018 16:32:37 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 16:16:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A0%D7%A6%D7%A4%D7%9A">@<bdi>מנצפך</bdi></a> אמר ב<a href="/post/34801">הגנה על כניסה לרשת מבחוץ</a>:</p>
<blockquote>
<p dir="auto">נשאלתי:<br />
יש רשת של בית כנסת. באחד המחשבים יש פיקוד על החשמל. הראוטר מפנה את אחד הפורטים למחשב הזה, וכך אפשר לשלוט על החשמל מכל מקום.<br />
הבעיה החמורה היא שאין שום הגנה על הפיקוד, וכל אחד שיודע את ה IP והפורט, יכול להיכנס לפיקוד ללא צורך בסיסמה.</p>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A0%D7%A6%D7%A4%D7%9A">@<bdi>מנצפך</bdi></a> השליטה היא דף WEB ללא שם משתמש וסיסמה?</p>
]]></description><link>https://tchumim.com/post/34806</link><guid isPermaLink="true">https://tchumim.com/post/34806</guid><dc:creator><![CDATA[zvinissim]]></dc:creator><pubDate>Mon, 20 Aug 2018 16:16:16 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 16:06:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A0%D7%A6%D7%A4%D7%9A">@<bdi>מנצפך</bdi></a><br />
כן.</p>
<p dir="auto">לא נתת לנו שום כיון איך נראה הפיקוד של החשמל.</p>
<p dir="auto">מה שאני מציע זה:</p>
<ol>
<li>הניהול של הפיקוד יהיה חסום ברשת הציבורית.</li>
<li>דף שתעשה עם שם משתמש וסיסמא לצורך אימות.</li>
<li>הפניית נתונים בדף פנימי שעליו יחולו הרשאות תיקייה (זה אפשרי בIIS ואני משוכנע שאפשרי גם בלינוקס)<br />
עם reverse proxy לכתובת הפנימית.</li>
</ol>
<p dir="auto">דוגמא לרברס פרוקסי בnginx</p>
<pre><code>location ~ \.php {
    proxy_pass http://127.0.0.1:8000;
}
</code></pre>
<p dir="auto"><a href="https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/" target="_blank" rel="noopener noreferrer nofollow ugc">מקור</a></p>
<p dir="auto">דוגמא בIIS</p>
<pre><code>&lt;rewrite&gt;
    &lt;rules&gt;
        &lt;rule name="Reverse Proxy to webmail" stopProcessing="true"&gt;
            &lt;match url="^webmail/(.*)" /&gt;
            &lt;action type="Rewrite" url="http://localhost:8081/{R:1}" /&gt;
        &lt;/rule&gt;
        &lt;rule name="Reverse Proxy to payroll" stopProcessing="true"&gt;
            &lt;match url="^payroll/(.*)" /&gt;
            &lt;action type="Rewrite" url="http://localhost:8082/{R:1}" /&gt;
        &lt;/rule&gt;
    &lt;/rules&gt;
&lt;/rewrite&gt;

</code></pre>
<p dir="auto"><a href="https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/reverse-proxy-with-url-rewrite-v2-and-application-request-routing" target="_blank" rel="noopener noreferrer nofollow ugc">מקור</a></p>
<p dir="auto">אפשר גם בNodeJs להשתמש עם משהו כזה<br />
<a href="https://github.com/OptimalBits/redbird" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/OptimalBits/redbird</a><br />
ואז אולי להקשיח עוד את הביטחון שזה המשתמש של עם קוד מתאים</p>
]]></description><link>https://tchumim.com/post/34804</link><guid isPermaLink="true">https://tchumim.com/post/34804</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Mon, 20 Aug 2018 16:06:14 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 14:18:42 GMT]]></title><description><![CDATA[<p dir="auto">ואיך יוכלו להיכנס מבחוץ? ע"י ה VPN?<br />
וגם אם כן, זה אני עדיין מחפש פתרון יותר קל, ע"י זיהוי עם שם משתמש וכדו'.</p>
]]></description><link>https://tchumim.com/post/34803</link><guid isPermaLink="true">https://tchumim.com/post/34803</guid><dc:creator><![CDATA[מנצפך]]></dc:creator><pubDate>Mon, 20 Aug 2018 14:18:42 GMT</pubDate></item><item><title><![CDATA[Reply to הגנה על כניסה לרשת מבחוץ on Mon, 20 Aug 2018 13:51:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%A0%D7%A6%D7%A4%D7%9A">@<bdi>מנצפך</bdi></a><br />
אתה יכול להתקין שרת VPN בחינם על הרשת הפנימית.<br />
ולחשוף את הפיקוד רק לרשת הפנימית ולא החיצונית.</p>
]]></description><link>https://tchumim.com/post/34802</link><guid isPermaLink="true">https://tchumim.com/post/34802</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Mon, 20 Aug 2018 13:51:42 GMT</pubDate></item></channel></rss>