473,772 Members | 2,420 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

mapping to users home directory

I am trying to write an asp or aspx page that will create
a virtual ftp directory to the users Active Directory
home directory. That way a user can interact (drag/drop,
copy/paste) via IE with folder view for ftp sites.

I have some code, that seems to be "flaky" it works for
me and some others, but not everyone. I really need to
get a stable version. My asp code is below. Having it
in ASP is fine, but it would be a bonus to have a solid
ASPX (ASP.net) solution.

There is one issue I have ran into that is pretty
annoying, and I am not sure if it can be fixed or not and
that is the security of the virtual directory and file.
I would prefer that when the user is at work on the
network and logged in with their AD account that they
would not be challenged to authenticate, but I could not
get the "request.Server Variables("AUTH _PASSWORD")" method
to work unless Basic Authentication is used, requiring
the user to login. I do not know if this can be avoided
in ASP.net, but if I can use an aspx page that can get
the password without having to decrypt or whatever that
would be ideal. Anyway, here is the code I have:
----------------------------------------------------------
-------------------------
<%

strFullUserName = request.ServerV ariables("AUTH_ USER")
strUserPass = request.ServerV ariables("AUTH_ PASSWORD")
strWebServer = request.ServerV ariables("SERVE R_NAME")
strWebServerIP = request.ServerV ariables("LOCAL _ADDR")

'Split domain and username

strUserDomain = strFullUserName
strUserDomain = Mid (strFullUserNam e, 1, Instr
(strFullUserNam e, "\")-1)
strUserDomainLe ngth = len(strUserDoma in)
strFullUserName Length = Len(strFullUser Name)
strUserName = Right (strFullUserNam e,
strFullUserName Length - strUserDomainLe ngth -1)

Set objUser = GetObject("WinN T://" & strUserDomain & "/"
& strUserName, user)
strUserHome = objUser.homeDir ectory

strVD = "ftp://" & strWebServer & "/"
On Error Resume Next

Set IISOBJ = GetObject
("IIS://Localhost/MSFTPSVC/1/Root")
Set NewDir = IISOBJ.Create(" IIsFtpVirtualDi r",
strUserName)

Error.Number = 0
NewDir.Path = strUserHome
NewDir.AccessRe ad = True
NewDir.AccessWr ite = True
NewDir.UNCUserN ame = strfullUserName
NewDir.UNCPassw ord = strUserPass
NewDir.SetInfo
Set NewDir=Nothing
Set IISObJ=Nothing
Response.Redire ct( "ftp://testportal" )
'response.write ("Your P Drive Was Mapped
Successfully!"& "<a href=""ftp://testportal/"">Click
Here</a><br>")

%>
Jul 19 '05 #1
15 3888
Connecting to LDAP, IIS, etc. is not going to work for authenticated users
that are 'peons'... they must be members of certain privilege groups in
order to create an IIS application; for example, guests and domain users do
not have this privilege.

So, this isn't necessarily that you have flaky code, but that you expect any
user to be able to create your objects. A possible alternative would be to
store the data or set some flag in a database, and have a VBS script that
runs as you or as Administrator, wake up every minute and see if there is a
user to add; if so, create the stuff. The VBS script would then run as a
user with enough privileges to create everything you want to create here.
Of course there would sometimes be a lag of up to a minute, between the time
the user entered the data via the ASP page, and when the directory was
actually created and available for use.

A


"scmiles" <sc*****@nosp am-dmacc.edu> wrote in message
news:0a******** *************** *****@phx.gbl.. .
I am trying to write an asp or aspx page that will create
a virtual ftp directory to the users Active Directory
home directory. That way a user can interact (drag/drop,
copy/paste) via IE with folder view for ftp sites.

I have some code, that seems to be "flaky" it works for
me and some others, but not everyone. I really need to
get a stable version. My asp code is below. Having it
in ASP is fine, but it would be a bonus to have a solid
ASPX (ASP.net) solution.

There is one issue I have ran into that is pretty
annoying, and I am not sure if it can be fixed or not and
that is the security of the virtual directory and file.
I would prefer that when the user is at work on the
network and logged in with their AD account that they
would not be challenged to authenticate, but I could not
get the "request.Server Variables("AUTH _PASSWORD")" method
to work unless Basic Authentication is used, requiring
the user to login. I do not know if this can be avoided
in ASP.net, but if I can use an aspx page that can get
the password without having to decrypt or whatever that
would be ideal. Anyway, here is the code I have:
----------------------------------------------------------
-------------------------
<%

strFullUserName = request.ServerV ariables("AUTH_ USER")
strUserPass = request.ServerV ariables("AUTH_ PASSWORD")
strWebServer = request.ServerV ariables("SERVE R_NAME")
strWebServerIP = request.ServerV ariables("LOCAL _ADDR")

'Split domain and username

strUserDomain = strFullUserName
strUserDomain = Mid (strFullUserNam e, 1, Instr
(strFullUserNam e, "\")-1)
strUserDomainLe ngth = len(strUserDoma in)
strFullUserName Length = Len(strFullUser Name)
strUserName = Right (strFullUserNam e,
strFullUserName Length - strUserDomainLe ngth -1)

Set objUser = GetObject("WinN T://" & strUserDomain & "/"
& strUserName, user)
strUserHome = objUser.homeDir ectory

strVD = "ftp://" & strWebServer & "/"
On Error Resume Next

Set IISOBJ = GetObject
("IIS://Localhost/MSFTPSVC/1/Root")
Set NewDir = IISOBJ.Create(" IIsFtpVirtualDi r",
strUserName)

Error.Number = 0
NewDir.Path = strUserHome
NewDir.AccessRe ad = True
NewDir.AccessWr ite = True
NewDir.UNCUserN ame = strfullUserName
NewDir.UNCPassw ord = strUserPass
NewDir.SetInfo
Set NewDir=Nothing
Set IISObJ=Nothing
Response.Redire ct( "ftp://testportal" )
'response.write ("Your P Drive Was Mapped
Successfully!"& "<a href=""ftp://testportal/"">Click
Here</a><br>")

%>

Jul 19 '05 #2
An FTP site?? FTP Servers don't do ASP.

An FTP Server will automatically dump a user into a folder if there is
a folder that matches their username. Just create a virtual folder
that is the same folder name as the username. Then point it to
whatever in the file system location you want it to be. When the user
logs in as the particular user name it will auotmatically dump them in
the right folder.

Example:

User name: JSmith

Virtual Directory: JSmith
Virtual Directory Physical Path: "C:\where\ever\ the\files\are\"
Virtual Directory Logical Path: ftp://servername/jsmith

When user connect to it as JSmith they are automatically dumped into
thier proper folder. It might be their "ROOT" so it may only show up
as "ftp://servername", but I don't remember for sure. Just have them
upload a file, then you go look for it and see where it ended up.
--

Phillip Windell [CCNA, MVP, MCP]
pw******@wandtv .com
WAND-TV (ABC Affiliate)
www.wandtv.com

"scmiles" <sc*****@nosp am-dmacc.edu> wrote in message
news:0a******** *************** *****@phx.gbl.. .
I am trying to write an asp or aspx page that will create
a virtual ftp directory to the users Active Directory
home directory. That way a user can interact (drag/drop,
copy/paste) via IE with folder view for ftp sites.

I have some code, that seems to be "flaky" it works for
me and some others, but not everyone. I really need to
get a stable version. My asp code is below. Having it
in ASP is fine, but it would be a bonus to have a solid
ASPX (ASP.net) solution.

There is one issue I have ran into that is pretty
annoying, and I am not sure if it can be fixed or not and
that is the security of the virtual directory and file.
I would prefer that when the user is at work on the
network and logged in with their AD account that they
would not be challenged to authenticate, but I could not
get the "request.Server Variables("AUTH _PASSWORD")" method
to work unless Basic Authentication is used, requiring
the user to login. I do not know if this can be avoided
in ASP.net, but if I can use an aspx page that can get
the password without having to decrypt or whatever that
would be ideal. Anyway, here is the code I have:
----------------------------------------------------------
-------------------------
<%

strFullUserName = request.ServerV ariables("AUTH_ USER")
strUserPass = request.ServerV ariables("AUTH_ PASSWORD")
strWebServer = request.ServerV ariables("SERVE R_NAME")
strWebServerIP = request.ServerV ariables("LOCAL _ADDR")

'Split domain and username

strUserDomain = strFullUserName
strUserDomain = Mid (strFullUserNam e, 1, Instr
(strFullUserNam e, "\")-1)
strUserDomainLe ngth = len(strUserDoma in)
strFullUserName Length = Len(strFullUser Name)
strUserName = Right (strFullUserNam e,
strFullUserName Length - strUserDomainLe ngth -1)

Set objUser = GetObject("WinN T://" & strUserDomain & "/"
& strUserName, user)
strUserHome = objUser.homeDir ectory

strVD = "ftp://" & strWebServer & "/"
On Error Resume Next

Set IISOBJ = GetObject
("IIS://Localhost/MSFTPSVC/1/Root")
Set NewDir = IISOBJ.Create(" IIsFtpVirtualDi r",
strUserName)

Error.Number = 0
NewDir.Path = strUserHome
NewDir.AccessRe ad = True
NewDir.AccessWr ite = True
NewDir.UNCUserN ame = strfullUserName
NewDir.UNCPassw ord = strUserPass
NewDir.SetInfo
Set NewDir=Nothing
Set IISObJ=Nothing
Response.Redire ct( "ftp://testportal" )
'response.write ("Your P Drive Was Mapped
Successfully!"& "<a href=""ftp://testportal/"">Click
Here</a><br>")

%>

Jul 19 '05 #3
For testing purposes, the Everyone group has permissions
to the create the VD they need in the metabase.
-----Original Message-----
Connecting to LDAP, IIS, etc. is not going to work for authenticated usersthat are 'peons'... they must be members of certain privilege groups inorder to create an IIS application; for example, guests and domain users donot have this privilege.

So, this isn't necessarily that you have flaky code, but that you expect anyuser to be able to create your objects. A possible alternative would be tostore the data or set some flag in a database, and have a VBS script thatruns as you or as Administrator, wake up every minute and see if there is auser to add; if so, create the stuff. The VBS script would then run as auser with enough privileges to create everything you want to create here.Of course there would sometimes be a lag of up to a minute, between the timethe user entered the data via the ASP page, and when the directory wasactually created and available for use.

A


"scmiles" <sc*****@nosp am-dmacc.edu> wrote in message
news:0a******* *************** ******@phx.gbl. ..
I am trying to write an asp or aspx page that will create a virtual ftp directory to the users Active Directory
home directory. That way a user can interact (drag/drop, copy/paste) via IE with folder view for ftp sites.

I have some code, that seems to be "flaky" it works for
me and some others, but not everyone. I really need to
get a stable version. My asp code is below. Having it
in ASP is fine, but it would be a bonus to have a solid ASPX (ASP.net) solution.

There is one issue I have ran into that is pretty
annoying, and I am not sure if it can be fixed or not and that is the security of the virtual directory and file.
I would prefer that when the user is at work on the
network and logged in with their AD account that they
would not be challenged to authenticate, but I could not get the "request.Server Variables("AUTH _PASSWORD")" method to work unless Basic Authentication is used, requiring
the user to login. I do not know if this can be avoided in ASP.net, but if I can use an aspx page that can get
the password without having to decrypt or whatever that
would be ideal. Anyway, here is the code I have:
------------------------------------------------------- --- -------------------------
<%

strFullUserName = request.ServerV ariables("AUTH_ USER")
strUserPass = request.ServerV ariables("AUTH_ PASSWORD")
strWebServer = request.ServerV ariables("SERVE R_NAME")
strWebServerIP = request.ServerV ariables("LOCAL _ADDR")

'Split domain and username

strUserDomain = strFullUserName
strUserDomain = Mid (strFullUserNam e, 1, Instr
(strFullUserNam e, "\")-1)
strUserDomainLe ngth = len(strUserDoma in)
strFullUserName Length = Len(strFullUser Name)
strUserName = Right (strFullUserNam e,
strFullUserName Length - strUserDomainLe ngth -1)

Set objUser = GetObject("WinN T://" & strUserDomain & "/" & strUserName, user)
strUserHome = objUser.homeDir ectory

strVD = "ftp://" & strWebServer & "/"
On Error Resume Next

Set IISOBJ = GetObject
("IIS://Localhost/MSFTPSVC/1/Root")
Set NewDir = IISOBJ.Create(" IIsFtpVirtualDi r",
strUserName)

Error.Number = 0
NewDir.Path = strUserHome
NewDir.AccessRe ad = True
NewDir.AccessWr ite = True
NewDir.UNCUserN ame = strfullUserName
NewDir.UNCPassw ord = strUserPass
NewDir.SetInfo
Set NewDir=Nothing
Set IISObJ=Nothing
Response.Redire ct( "ftp://testportal" )
'response.write ("Your P Drive Was Mapped
Successfully!"& "<a href=""ftp://testportal/"">Click
Here</a><br>")

%>

.

Jul 19 '05 #4
Please look at my code, this is what I am doing already,
programatically .
-----Original Message-----
An FTP site?? FTP Servers don't do ASP.

An FTP Server will automatically dump a user into a folder if there isa folder that matches their username. Just create a virtual folderthat is the same folder name as the username. Then point it towhatever in the file system location you want it to be. When the userlogs in as the particular user name it will auotmatically dump them inthe right folder.

Example:

User name: JSmith

Virtual Directory: JSmith
Virtual Directory Physical Path: "C:\where\ever\ the\files\are\"Virtual Directory Logical Path: ftp://servername/jsmith

When user connect to it as JSmith they are automatically dumped intothier proper folder. It might be their "ROOT" so it may only show upas "ftp://servername", but I don't remember for sure. Just have themupload a file, then you go look for it and see where it ended up.

--

Phillip Windell [CCNA, MVP, MCP]
pw******@wandt v.com
WAND-TV (ABC Affiliate)
www.wandtv.com

"scmiles" <sc*****@nosp am-dmacc.edu> wrote in message
news:0a******* *************** ******@phx.gbl. ..
I am trying to write an asp or aspx page that will create a virtual ftp directory to the users Active Directory
home directory. That way a user can interact (drag/drop, copy/paste) via IE with folder view for ftp sites.

I have some code, that seems to be "flaky" it works for
me and some others, but not everyone. I really need to
get a stable version. My asp code is below. Having it
in ASP is fine, but it would be a bonus to have a solid ASPX (ASP.net) solution.

There is one issue I have ran into that is pretty
annoying, and I am not sure if it can be fixed or not and that is the security of the virtual directory and file.
I would prefer that when the user is at work on the
network and logged in with their AD account that they
would not be challenged to authenticate, but I could not get the "request.Server Variables("AUTH _PASSWORD")" method to work unless Basic Authentication is used, requiring
the user to login. I do not know if this can be avoided in ASP.net, but if I can use an aspx page that can get
the password without having to decrypt or whatever that
would be ideal. Anyway, here is the code I have:
------------------------------------------------------- --- -------------------------
<%

strFullUserName = request.ServerV ariables("AUTH_ USER")
strUserPass = request.ServerV ariables("AUTH_ PASSWORD")
strWebServer = request.ServerV ariables("SERVE R_NAME")
strWebServerIP = request.ServerV ariables("LOCAL _ADDR")

'Split domain and username

strUserDomain = strFullUserName
strUserDomain = Mid (strFullUserNam e, 1, Instr
(strFullUserNam e, "\")-1)
strUserDomainLe ngth = len(strUserDoma in)
strFullUserName Length = Len(strFullUser Name)
strUserName = Right (strFullUserNam e,
strFullUserName Length - strUserDomainLe ngth -1)

Set objUser = GetObject("WinN T://" & strUserDomain & "/" & strUserName, user)
strUserHome = objUser.homeDir ectory

strVD = "ftp://" & strWebServer & "/"
On Error Resume Next

Set IISOBJ = GetObject
("IIS://Localhost/MSFTPSVC/1/Root")
Set NewDir = IISOBJ.Create(" IIsFtpVirtualDi r",
strUserName)

Error.Number = 0
NewDir.Path = strUserHome
NewDir.AccessRe ad = True
NewDir.AccessWr ite = True
NewDir.UNCUserN ame = strfullUserName
NewDir.UNCPassw ord = strUserPass
NewDir.SetInfo
Set NewDir=Nothing
Set IISObJ=Nothing
Response.Redire ct( "ftp://testportal" )
'response.write ("Your P Drive Was Mapped
Successfully!"& "<a href=""ftp://testportal/"">Click
Here</a><br>")

%>

.

Jul 19 '05 #5
IUSR_yourmachin e is NOT in the everyone group for the domain!!!!!!!

"scmiles" <an*******@disc ussions.microso ft.com> wrote in message
news:00******** *************** *****@phx.gbl.. .
For testing purposes, the Everyone group has permissions
to the create the VD they need in the metabase.
-----Original Message-----
Connecting to LDAP, IIS, etc. is not going to work for

authenticated users
that are 'peons'... they must be members of certain

privilege groups in
order to create an IIS application; for example, guests

and domain users do
not have this privilege.

So, this isn't necessarily that you have flaky code, but

that you expect any
user to be able to create your objects. A possible

alternative would be to
store the data or set some flag in a database, and have

a VBS script that
runs as you or as Administrator, wake up every minute

and see if there is a
user to add; if so, create the stuff. The VBS script

would then run as a
user with enough privileges to create everything you

want to create here.
Of course there would sometimes be a lag of up to a

minute, between the time
the user entered the data via the ASP page, and when the

directory was
actually created and available for use.

A


"scmiles" <sc*****@nosp am-dmacc.edu> wrote in message
news:0a******* *************** ******@phx.gbl. ..
I am trying to write an asp or aspx page that will create a virtual ftp directory to the users Active Directory
home directory. That way a user can interact (drag/drop, copy/paste) via IE with folder view for ftp sites.

I have some code, that seems to be "flaky" it works for
me and some others, but not everyone. I really need to
get a stable version. My asp code is below. Having it
in ASP is fine, but it would be a bonus to have a solid ASPX (ASP.net) solution.

There is one issue I have ran into that is pretty
annoying, and I am not sure if it can be fixed or not and that is the security of the virtual directory and file.
I would prefer that when the user is at work on the
network and logged in with their AD account that they
would not be challenged to authenticate, but I could not get the "request.Server Variables("AUTH _PASSWORD")" method to work unless Basic Authentication is used, requiring
the user to login. I do not know if this can be avoided in ASP.net, but if I can use an aspx page that can get
the password without having to decrypt or whatever that
would be ideal. Anyway, here is the code I have:
------------------------------------------------------- --- -------------------------
<%

strFullUserName = request.ServerV ariables("AUTH_ USER")
strUserPass = request.ServerV ariables("AUTH_ PASSWORD")
strWebServer = request.ServerV ariables("SERVE R_NAME")
strWebServerIP = request.ServerV ariables("LOCAL _ADDR")

'Split domain and username

strUserDomain = strFullUserName
strUserDomain = Mid (strFullUserNam e, 1, Instr
(strFullUserNam e, "\")-1)
strUserDomainLe ngth = len(strUserDoma in)
strFullUserName Length = Len(strFullUser Name)
strUserName = Right (strFullUserNam e,
strFullUserName Length - strUserDomainLe ngth -1)

Set objUser = GetObject("WinN T://" & strUserDomain & "/" & strUserName, user)
strUserHome = objUser.homeDir ectory

strVD = "ftp://" & strWebServer & "/"
On Error Resume Next

Set IISOBJ = GetObject
("IIS://Localhost/MSFTPSVC/1/Root")
Set NewDir = IISOBJ.Create(" IIsFtpVirtualDi r",
strUserName)

Error.Number = 0
NewDir.Path = strUserHome
NewDir.AccessRe ad = True
NewDir.AccessWr ite = True
NewDir.UNCUserN ame = strfullUserName
NewDir.UNCPassw ord = strUserPass
NewDir.SetInfo
Set NewDir=Nothing
Set IISObJ=Nothing
Response.Redire ct( "ftp://testportal" )
'response.write ("Your P Drive Was Mapped
Successfully!"& "<a href=""ftp://testportal/"">Click
Here</a><br>")

%>

.

Jul 19 '05 #6
Unless "yourmachin e" is a DC.

Ray at work

"Aaron Bertrand - MVP" <aa***@TRASHasp faq.com> wrote in message
news:et******** *****@TK2MSFTNG P10.phx.gbl...
IUSR_yourmachin e is NOT in the everyone group for the domain!!!!!!!

Jul 19 '05 #7
> Unless "yourmachin e" is a DC.

I don't know of too many DCs that are running ASP applications. Certainly
not where I would be running it, and certainly doesn't sound like a
foolproof way of "securing" the server...
Jul 19 '05 #8
I don't know of many either. It's a bad idea, imo. But, I just wanted to
throw in the exception to the rule.

Ray at work

"Aaron Bertrand - MVP" <aa***@TRASHasp faq.com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Unless "yourmachin e" is a DC.


I don't know of too many DCs that are running ASP applications. Certainly
not where I would be running it, and certainly doesn't sound like a
foolproof way of "securing" the server...

Jul 19 '05 #9
"Ray at <%=sLocation% >" <myfirstname at lane34 dot com> wrote in
message news:ub******** ******@tk2msftn gp13.phx.gbl...
Unless "yourmachin e" is a DC.


I think even then I don't think it is in the Everyone Group although
it would be a Domain Account. I wouldn't swear to it, but that is how
I think it is.

--

Phillip Windell [CCNA, MVP, MCP]
pw******@wandtv .com
WAND-TV (ABC Affiliate)
www.wandtv.com
Jul 19 '05 #10

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

Similar topics

4
3538
by: Ed | last post by:
Hello All, I posted earlier about a problem I was having with editing or pasting/deleting files in the "Home Directory" of my web server. I just noticed that the "Home Directory" option in the "Home Directory" tab is grayed out. Why would this be grayed out? Would this be a configuration thing or a permissions thing? I have an administrator account on this server
4
1754
by: Krunom Ancini | last post by:
Hi, all stuff works fine if i define absolute paths but with relative i have some problems: i defined my at Internet Information Services (IIS) home directory of my "default web site" and I define in my application all file destinations relative to this home directory. An example from .aspx file: <TABLE id="Table1" style="WIDTH: 963px; HEIGHT: 527px" cellSpacing="0"
6
8920
by: Hemant Shah | last post by:
Folks, I need to move HOME directory of an instance to another directory. What is the best way of doing it? Is changing password file enough? or dies DB2 store this info in it's own config? I am running UDB 8.2 on Linux and AIX. Thanks.
2
2793
by: Danny Miller | last post by:
Hi there, I'm facing a problem that is driving me nuts. The scenario is as follows: 1) Create an empty directory structure e.g. C:\Dev1\TestWebApp 2) Map a virtual directory e.g. TestWebApp to this new directory 3) Under C:\Dev1 create a blank visual studio solution and add a new web project called TestWebApp (which will be created in C:\Dev1\TestWebApp and
6
2099
by: Michael Tissington | last post by:
I'm trying to add some extensions to IIS on the properties, home directory, config screen. I must be missing something because the OK button is always disabled ... Any ideas please ? -- Michael Tissington http://www.oaklodge.com
2
5984
by: Jim in Arizona | last post by:
My goal, somehow, is to populate a dropdownlist with all the user names in active directory. I don't even know where to begin, really. I added a reference to System.DirectoryServices so I could use the System.DirectoryServices.ActiveDirectory namespace. I don't even know if this is the right way to go as I can't seem to find anything in that namespace that would help me query active directory for names. I can't use an LDAP query...
2
3254
by: deko | last post by:
I have files on my Apache web server that are NOT in publicly accessible space. I want to make these files available for download only to authenticated users. I currently use a download script that is accessed from an SSL-encrypted page (that the user arrives at after authenticating). There are links in this page that initiate the different file downloads by passing a variable (name of the directory and file) to the download script. ...
3
1960
by: anthriksh2000 | last post by:
Hi, I want to have a image which has 4 people in it and i wnat that it should have image mapping. and when a particulat person is clicked upon in that image it should open a corresponding person HTML file in the new window . for that i used a software to create a image cordinates mapped to the corresponding person whcih i had saved in the same local folder . But now eben when we click any person nothing is happening in response ...
6
14534
by: lawpoop | last post by:
I'm working on a PHP site and I have my database password file behind the server root directory. I can reference the password file by include("../ database_password.inc.php"), but I would like to make the code more portable and not have this relative path reference. Is there a way I can know for certain what the home directory is called? As i'm developing this project in version control, I sometimes checkout a development branch. I...
0
9619
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
9454
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
10261
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10103
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
9911
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
6713
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
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
2850
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.