473,756 Members | 1,861 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to create file on network share from ASP.NET

Hi,

I have ASP.NET application running on standalone (not part of the domain)
Windows 2003. I use forms authentication for my application. The problem I
have is that I need to create and read files on Windows domain network shared
drives and also on shared via Samba Unix drives, which is equivalent to
writing/reading to the workgroup computer. Please point, if possible, to
detailed step by step description of what needs to be done. Thank you.

Regards,

Nov 19 '05 #1
11 3071
Hi Andre,

You can certainly use the System.IO classes to create files on a network
drive in the same way that you would create them on a local machine drive.
You can use a UNC path if you wish, or a mapped drive. The rules are the
same. The only differences would be:

1. Security: Use an Active Directory domain account with the proper
permissions. Use impersonation if necessary.
2. Unix drives: You may have some issues with the files themselves,
especially if they are text files. Carriage returns are different on Unix
systems. The system may be using ASCII instead of Unicode text encoding as
well.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:2C******** *************** ***********@mic rosoft.com...
Hi,

I have ASP.NET application running on standalone (not part of the domain)
Windows 2003. I use forms authentication for my application. The problem I
have is that I need to create and read files on Windows domain network
shared
drives and also on shared via Samba Unix drives, which is equivalent to
writing/reading to the workgroup computer. Please point, if possible, to
detailed step by step description of what needs to be done. Thank you.

Regards,

Nov 19 '05 #2
Hi Kevin,

My problem is that I don't understand how impersanation can help me. My web
server (means any accounts on it) does not permissions to read/write to
shared directories. Administrators of Unix and Windows domain created for me
appropriate accounts for access to shares - means on Unix was created user
asp with password asp which can access shared folder. From Windows Explorer
on my PC I can connect to this shared folder using provided username and
password. But this username and password are from remote box not the local
one, which means that LogonUser will not work for me as it can be used only
to login to local computer (at least that is what documentation says).

Could you please help with the issue that I need to login to another box
using another box'es account and not the local one?

Thanks a lot.
"Kevin Spencer" wrote:
Hi Andre,

You can certainly use the System.IO classes to create files on a network
drive in the same way that you would create them on a local machine drive.
You can use a UNC path if you wish, or a mapped drive. The rules are the
same. The only differences would be:

1. Security: Use an Active Directory domain account with the proper
permissions. Use impersonation if necessary.
2. Unix drives: You may have some issues with the files themselves,
especially if they are text files. Carriage returns are different on Unix
systems. The system may be using ASCII instead of Unicode text encoding as
well.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:2C******** *************** ***********@mic rosoft.com...
Hi,

I have ASP.NET application running on standalone (not part of the domain)
Windows 2003. I use forms authentication for my application. The problem I
have is that I need to create and read files on Windows domain network
shared
drives and also on shared via Samba Unix drives, which is equivalent to
writing/reading to the workgroup computer. Please point, if possible, to
detailed step by step description of what needs to be done. Thank you.

Regards,


Nov 19 '05 #3
Hi, Andre.

re:
Could you please help with the issue that I need to login to
another box using another box's account and not the local one?
<identity impersonate="tr ue" name="domain\us er" password="pwd"/>

should allow you to run ASP.NET while impersonating the
domain account which has permissions to read/write the other box.

For that, of course, both the other box and your box
need to be members of the same domain.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:50******** *************** ***********@mic rosoft.com... Hi Kevin,

My problem is that I don't understand how impersanation can help me. My web
server (means any accounts on it) does not permissions to read/write to
shared directories. Administrators of Unix and Windows domain created for me
appropriate accounts for access to shares - means on Unix was created user
asp with password asp which can access shared folder. From Windows Explorer
on my PC I can connect to this shared folder using provided username and
password. But this username and password are from remote box not the local
one, which means that LogonUser will not work for me as it can be used only
to login to local computer (at least that is what documentation says).

Could you please help with the issue that I need to login to another box
using another box'es account and not the local one?

Thanks a lot. "Kevin Spencer" wrote:

Hi Andre,

You can certainly use the System.IO classes to create files on a network
drive in the same way that you would create them on a local machine drive.
You can use a UNC path if you wish, or a mapped drive. The rules are the
same. The only differences would be:

1. Security: Use an Active Directory domain account with the proper
permissions. Use impersonation if necessary.
2. Unix drives: You may have some issues with the files themselves,
especially if they are text files. Carriage returns are different on Unix
systems. The system may be using ASCII instead of Unicode text encoding as
well.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:2C******** *************** ***********@mic rosoft.com...
> Hi,
>
> I have ASP.NET application running on standalone (not part of the domain)
> Windows 2003. I use forms authentication for my application. The problem I
> have is that I need to create and read files on Windows domain network
> shared
> drives and also on shared via Samba Unix drives, which is equivalent to
> writing/reading to the workgroup computer. Please point, if possible, to
> detailed step by step description of what needs to be done. Thank you.
>
> Regards,

Nov 19 '05 #4
Andre,

You might also want to acquire access programmaticall y.

Read this article :
http://www.netomatix.com/ImpersonateUser.aspx
and download and study the sample code provided.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:50******** *************** ***********@mic rosoft.com...
Hi Kevin,

My problem is that I don't understand how impersanation can help me. My web
server (means any accounts on it) does not permissions to read/write to
shared directories. Administrators of Unix and Windows domain created for me
appropriate accounts for access to shares - means on Unix was created user
asp with password asp which can access shared folder. From Windows Explorer
on my PC I can connect to this shared folder using provided username and
password. But this username and password are from remote box not the local
one, which means that LogonUser will not work for me as it can be used only
to login to local computer (at least that is what documentation says).

Could you please help with the issue that I need to login to another box
using another box'es account and not the local one?

Thanks a lot.
"Kevin Spencer" wrote:
Hi Andre,

You can certainly use the System.IO classes to create files on a network
drive in the same way that you would create them on a local machine drive.
You can use a UNC path if you wish, or a mapped drive. The rules are the
same. The only differences would be:

1. Security: Use an Active Directory domain account with the proper
permissions. Use impersonation if necessary.
2. Unix drives: You may have some issues with the files themselves,
especially if they are text files. Carriage returns are different on Unix
systems. The system may be using ASCII instead of Unicode text encoding as
well.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:2C******** *************** ***********@mic rosoft.com...
> Hi,
>
> I have ASP.NET application running on standalone (not part of the domain)
> Windows 2003. I use forms authentication for my application. The problem I
> have is that I need to create and read files on Windows domain network
> shared
> drives and also on shared via Samba Unix drives, which is equivalent to
> writing/reading to the workgroup computer. Please point, if possible, to
> detailed step by step description of what needs to be done. Thank you.
>
> Regards,
>


Nov 19 '05 #5
Hi Juan,

Thank you for your reply, but my point is exactly that both computers ARE
NOT members of the same domain - one is standalone Win2003 and another is
external domain member and I can not put both onto the same domain. Is there
any other way to do it?

Thank you.

You might also want to acquire access programmaticall y.

Read this article :
http://www.netomatix.com/ImpersonateUser.aspx
and download and study the sample code provided.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:50******** *************** ***********@mic rosoft.com...
Hi Kevin,

My problem is that I don't understand how impersanation can help me. My web
server (means any accounts on it) does not permissions to read/write to
shared directories. Administrators of Unix and Windows domain created for me
appropriate accounts for access to shares - means on Unix was created user
asp with password asp which can access shared folder. From Windows Explorer
on my PC I can connect to this shared folder using provided username and
password. But this username and password are from remote box not the local
one, which means that LogonUser will not work for me as it can be used only
to login to local computer (at least that is what documentation says).

Could you please help with the issue that I need to login to another box
using another box'es account and not the local one?

Thanks a lot.
"Kevin Spencer" wrote:
Hi Andre,

You can certainly use the System.IO classes to create files on a network
drive in the same way that you would create them on a local machine drive.
You can use a UNC path if you wish, or a mapped drive. The rules are the
same. The only differences would be:

1. Security: Use an Active Directory domain account with the proper
permissions. Use impersonation if necessary.
2. Unix drives: You may have some issues with the files themselves,
especially if they are text files. Carriage returns are different on Unix
systems. The system may be using ASCII instead of Unicode text encoding as
well.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:2C******** *************** ***********@mic rosoft.com...
> Hi,
>
> I have ASP.NET application running on standalone (not part of the domain)
> Windows 2003. I use forms authentication for my application. The problem I
> have is that I need to create and read files on Windows domain network
> shared
> drives and also on shared via Samba Unix drives, which is equivalent to
> writing/reading to the workgroup computer. Please point, if possible, to
> detailed step by step description of what needs to be done. Thank you.
>
> Regards,
>


Nov 19 '05 #6
re:
both computers ARE NOT members of the same domain
I think that, if that's the case, you're out of luck.

You might want to talk to your network admin
about joining your machine to the network.

What would prevent that ?
( If you need to access the shared drive's file system... )

My question to you is : how do you have *shared drives*
if the machines are not on the same network ?

That sounds a bit counter-intuitive to me.


Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:FC******** *************** ***********@mic rosoft.com... Hi Juan,

Thank you for your reply, but my point is exactly that both computers ARE
NOT members of the same domain - one is standalone Win2003 and another is
external domain member and I can not put both onto the same domain. Is there
any other way to do it?

Thank you.

You might also want to acquire access programmaticall y.

Read this article :
http://www.netomatix.com/ImpersonateUser.aspx
and download and study the sample code provided.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:50******** *************** ***********@mic rosoft.com...
> Hi Kevin,
>
> My problem is that I don't understand how impersanation can help me. My web
> server (means any accounts on it) does not permissions to read/write to
> shared directories. Administrators of Unix and Windows domain created for me
> appropriate accounts for access to shares - means on Unix was created user
> asp with password asp which can access shared folder. From Windows Explorer
> on my PC I can connect to this shared folder using provided username and
> password. But this username and password are from remote box not the local
> one, which means that LogonUser will not work for me as it can be used only
> to login to local computer (at least that is what documentation says).
>
> Could you please help with the issue that I need to login to another box
> using another box'es account and not the local one?
>
> Thanks a lot.
> "Kevin Spencer" wrote:
>
>> Hi Andre,
>>
>> You can certainly use the System.IO classes to create files on a network
>> drive in the same way that you would create them on a local machine drive.
>> You can use a UNC path if you wish, or a mapped drive. The rules are the
>> same. The only differences would be:
>>
>> 1. Security: Use an Active Directory domain account with the proper
>> permissions. Use impersonation if necessary.
>> 2. Unix drives: You may have some issues with the files themselves,
>> especially if they are text files. Carriage returns are different on Unix
>> systems. The system may be using ASCII instead of Unicode text encoding as
>> well.
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> ..Net Developer
>> The sun never sets on
>> the Kingdom of Heaven
>>
>> "Andre" <An***@discussi ons.microsoft.c om> wrote in message
>> news:2C******** *************** ***********@mic rosoft.com...
>> > Hi,
>> >
>> > I have ASP.NET application running on standalone (not part of the domain)
>> > Windows 2003. I use forms authentication for my application. The problem I
>> > have is that I need to create and read files on Windows domain network
>> > shared
>> > drives and also on shared via Samba Unix drives, which is equivalent to
>> > writing/reading to the workgroup computer. Please point, if possible, to
>> > detailed step by step description of what needs to be done. Thank you.
>> >
>> > Regards,

Nov 19 '05 #7
Hi Andre,

You can certainly impersonate a member of any domain, as long as you supply
that user's credentials. It's simply a matter of identifying the domain as
well as the user.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:FC******** *************** ***********@mic rosoft.com...
Hi Juan,

Thank you for your reply, but my point is exactly that both computers ARE
NOT members of the same domain - one is standalone Win2003 and another is
external domain member and I can not put both onto the same domain. Is
there
any other way to do it?

Thank you.

You might also want to acquire access programmaticall y.

Read this article :
http://www.netomatix.com/ImpersonateUser.aspx
and download and study the sample code provided.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Andre" <An***@discussi ons.microsoft.c om> wrote in message
news:50******** *************** ***********@mic rosoft.com...
> Hi Kevin,
>
> My problem is that I don't understand how impersanation can help me. My
> web
> server (means any accounts on it) does not permissions to read/write to
> shared directories. Administrators of Unix and Windows domain created
> for me
> appropriate accounts for access to shares - means on Unix was created
> user
> asp with password asp which can access shared folder. From Windows
> Explorer
> on my PC I can connect to this shared folder using provided username
> and
> password. But this username and password are from remote box not the
> local
> one, which means that LogonUser will not work for me as it can be used
> only
> to login to local computer (at least that is what documentation says).
>
> Could you please help with the issue that I need to login to another
> box
> using another box'es account and not the local one?
>
> Thanks a lot.
> "Kevin Spencer" wrote:
>
>> Hi Andre,
>>
>> You can certainly use the System.IO classes to create files on a
>> network
>> drive in the same way that you would create them on a local machine
>> drive.
>> You can use a UNC path if you wish, or a mapped drive. The rules are
>> the
>> same. The only differences would be:
>>
>> 1. Security: Use an Active Directory domain account with the proper
>> permissions. Use impersonation if necessary.
>> 2. Unix drives: You may have some issues with the files themselves,
>> especially if they are text files. Carriage returns are different on
>> Unix
>> systems. The system may be using ASCII instead of Unicode text
>> encoding as
>> well.
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> ..Net Developer
>> The sun never sets on
>> the Kingdom of Heaven
>>
>> "Andre" <An***@discussi ons.microsoft.c om> wrote in message
>> news:2C******** *************** ***********@mic rosoft.com...
>> > Hi,
>> >
>> > I have ASP.NET application running on standalone (not part of the
>> > domain)
>> > Windows 2003. I use forms authentication for my application. The
>> > problem I
>> > have is that I need to create and read files on Windows domain
>> > network
>> > shared
>> > drives and also on shared via Samba Unix drives, which is equivalent
>> > to
>> > writing/reading to the workgroup computer. Please point, if
>> > possible, to
>> > detailed step by step description of what needs to be done. Thank
>> > you.
>> >
>> > Regards,
>> >
>>
>>
>>


Nov 19 '05 #8
One technique I've used in the past is to use mirrored account. Set up
an account on both machines - same username, same password. Then
ASP.NET can impersonate the account on the server and be authenticated
/ authorized on the remote machine.

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Thu, 21 Jul 2005 06:35:05 -0700, "Andre"
<An***@discussi ons.microsoft.c om> wrote:
Hi Juan,

Thank you for your reply, but my point is exactly that both computers ARE
NOT members of the same domain - one is standalone Win2003 and another is
external domain member and I can not put both onto the same domain. Is there
any other way to do it?

Thank you.


Nov 19 '05 #9
Guys,

Thank you very much for your answers/suggestions.

Scott,
Does you suggestion mean that Windows will always try to login using current
(impersonated) credentials first? What if my impersonated credentials are
domain related, is it going to be a problem? Sorry for dumb questions I am
not an expert in Windows security.

Kevin,
Does you suggestion mean, that it is domain, which webserver belongs to, you
are talking about? Can impersonte user of another domain (I have domain name,
username and password for that domain, but server is not part of that domain)?

Juan,
There are various reasons (not of a technical matter) which prevent our
web-server to be joined with the other domain. Machines are on the same
physical network, but webserver is maintained by one company and domain by
another. So all I have from the domain managed box is the domain name, share
name, username and password on THAT domain and I need to create export files
using those credentials. I can do this from Windows GUI - access that share
using provided credentials so it is should not a problem via .Net too.

I am currently looking at using WNetAddConnecti on2 function to map external
drives locally and write onto local drives. Is it a good idea?

Thanks & Regards,

Andre.
"Scott Allen" wrote:
One technique I've used in the past is to use mirrored account. Set up
an account on both machines - same username, same password. Then
ASP.NET can impersonate the account on the server and be authenticated
/ authorized on the remote machine.

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Thu, 21 Jul 2005 06:35:05 -0700, "Andre"
<An***@discussi ons.microsoft.c om> wrote:
Hi Juan,

Thank you for your reply, but my point is exactly that both computers ARE
NOT members of the same domain - one is standalone Win2003 and another is
external domain member and I can not put both onto the same domain. Is there
any other way to do it?

Thank you.


Nov 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
9740
by: moonriver | last post by:
I write a program accessing files in network drive o:. It is doable as a standalone application. However, if it is running under windows service, the following exception will appear: 13/07/2004 10:24:48 AM run() error: System.IO.IOException: The specified network password is not correct. at System.IO.__Error.WinIOError(Int32 errorCode, String str) at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare...
23
2908
by: Lamberti Fabrizio | last post by:
Hi all, I've to access to a network file from an asp pages. I've red a lot of things on old posts and on Microsoft article but I can't still solve my problem. I've got two server inside the same NT domain, each one has its own web server. The web server is always IIS 5.0.
7
43147
by: Frank Rizzo | last post by:
Hello, I've asked this question in the languages.vb group, but got no response, so I'll try my luck here. My app needs to copy a file from a local folder to a network share. The network share is accessible via a domain ID, which has all possible folder rights assigned to it. The domain ID also has full rights to the local folder. I am using the impersonation code from here ...
11
9600
by: sur | last post by:
Hello, My problem is that File.Exists works fine if my file is on my local drive but returns false if its on any other drive. I think that the issue is probably file permissions and so I have tried the following: FileIOPermision permFileIO = new FileIOPermission(FileIOPermissionAccess.Read, filepath.Value.ToString());
2
3571
by: Stu | last post by:
Using IIs 6.0 on a Server 2003 box, and using ASP.NET I'm trying to do the following code snippit... Dim NewName As String = "\\network_share_path\edit_me.ppt" Dim PubName As String = "\\network_share_path\show_me.ppt" Dim PubFile As System.IO.File If PubFile.Exists(PubName) Then
0
1339
by: Frank Rizzo | last post by:
Hello, my app needs to copy a file on a network share. The network share is accessible via a domain ID, which has all possible folder rights assigned to it. I am using the impersonation code from here http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemSecurityPrincipalWindowsImpersonationContextClassTopic.asp?frame=true The code seems to properly impersonate (as evidenced by debug statements),...
6
3376
by: JonSteng | last post by:
..Net Visual Studio Professional 2003 Version 7.1.3088 ..Net Framework 1.1 SP1 Version 1.1.4322 IIS 5.1 Windows XP Professional SP2 Micron T3000 Laptop (1.5 GHz; 1GB RAM; 40GB HD with 17GB Free) I installed FrontPage server extensions to IIS on my computer while following instructions in a Microsoft ASP.Net MCSD training book. After installing the FrontPage Server Extensions I cannot create a new
2
3309
by: Tim | last post by:
Hi all, How can I create a network share for a local directory? I found it quite easy to come up with some methods to set access rights for directories and / or files, but I can't find any working examples (there aren't many anyway) of how to create a network share... Thanks in advance for your help Tim
0
1744
by: =?Utf-8?B?UGhpbCBKb2huc29u?= | last post by:
Hi, We have a legacy asp application that uses a third party component to upload a file and saves it to a secure network share. The code sets the credentials for the secure network share on the third party component. I want to do something similar from C# code and save a file to the secure network share by setting the credentials to access the network share in code rather than running the C# code under the user account that has access...
0
9431
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9255
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9844
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9689
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8688
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7226
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5119
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3780
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2647
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.